Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Last active December 16, 2015 15:39
Show Gist options
  • Save mohayonao/5457835 to your computer and use it in GitHub Desktop.
Save mohayonao/5457835 to your computer and use it in GitHub Desktop.
###
play({RLPF.ar(Dust.ar([12, 15]), LFNoise1.ar(1/[3, 4], 1500, 1600), 0.02)})
###
T(_.zip( pan=[-1,+1], dust=[12,15], freq=[1/3, 1/4] ).map ([ pan, dust, freq ])->
T.Pan2.ar(T.RLPF.ar(T.Dust.ar(dust), LFNoise1.ar(freq, 1500, 1600), 0.02), pan)
).play()
T(_.zip( pan=[-1,+1], dust=[12,15], freq=[1/3, 1/4] ).map ([ pan, dust, freq ])->
T("Pan2.ar"
in : T("RLPF.ar"
in : T("Dust.ar", freq:12)
freq: T("LFNoise1.ar", freq:freq, mul:1500, add:1600)
rq : 0.02
)
pos: pan
)
).play()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment