Created
October 15, 2017 22:40
-
-
Save drart/695d8170ea046fc6aeb5c62a5283d948 to your computer and use it in GitHub Desktop.
Flocking DeJogne Distorion Demo (Frequency-modulated saw wave by ring-modulated square wave through modulated distortion)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var synth = flock.synth({ | |
synthDef: { | |
ugen: "flock.ugen.distortion.tarrabiaDeJonge", | |
amount: { | |
ugen: "flock.ugen.sin", | |
rate: "control", | |
freq: 0.25 | |
}, | |
source: { | |
ugen: "flock.ugen.saw", | |
freq: { | |
ugen: "flock.ugen.square", | |
mul: { | |
ugen: "flock.ugen.sin", | |
mul: 30, | |
freq: 2 | |
}, | |
add: 100 | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment