Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: chaos gen modular function for modular pseudo ugen prototyping
name
code content
( ~chaos={ var signal, myFrequency, frequencyMin=0.1, frequencyMax=30, myAmplitude, amplitudeMin=0.01, amplitudeMax=0.6, myPhase, phaseMin=0, phaseMax=1.5; myFrequency = Array.fill(2, {[rrand(frequencyMin, frequencyMax)]}); myAmplitude = Array.fill(2, {[rrand(amplitudeMin, amplitudeMax)]}); myPhase = Array.fill(2, {[rrand(phaseMin, phaseMax)]}); signal = LeakDC.ar(ChaosGen.allSubclasses.choose.ar(myFrequency, myPhase, myAmplitude)); Out.ar(0, signal); }; ) ~chaos.scope
code description
chaos gen modular function for modular pseudo ugen prototyping
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change