Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: playing around with ComplexRes UGen
name
code content
( z = { exprand(100.0, 5000.0) } ! 20; Ndef(\x, { var in = Decay.ar(Dust.ar(MouseX.kr(0.0001, 0.1, 1) * z, 10), 0.3) * PinkNoise.ar(0.4 ! (z.size div: 3), 1); z = z * LFNoise1.ar(0.2 ! z.size).range(1, 2) * LFNoise0.ar(20 ! z.size).exprange(1, 1.8); Splay.ar(ComplexRes.ar(in, z, 10 / z)) * 2 }).play ) // this started out as a comparison between BPF and ComplexRes ( z = [253.12, 2881.123, 2883.4, 1002.2, 882.01]; Ndef(\x, { var in = Decay.ar(Dust.ar(5, 100), 0.3) * PinkNoise.ar(0.4, 1); ComplexRes.ar(in, z, 10 / z).sum }).play ) ( z = [253.12, 2881.123, 2883.4, 1002.2, 882.01]; Ndef(\x, { var in = Decay.ar(Dust.ar(5, 100), 0.3) * PinkNoise.ar(0.4, 1); BPF.ar(in, z, (10 / z) * 2).sum }).play ) ( z = [253.12, 2881.123, 2883.4, 1002.2, 882.01]; Ndef(\x, { var in = Decay.ar(Dust.ar(5, 100), 0.3) * PinkNoise.ar(0.4, 1); z = z * LFNoise0.ar(13).range(1, 2); ComplexRes.ar(in, z, 10 / z).sum }).play ) ( z = [253.12, 2881.123, 2883.4, 1002.2, 882.01]; Ndef(\x, { var in = Decay.ar(Dust.ar(5, 100), 0.3) * PinkNoise.ar(0.4, 1); z = z * LFNoise0.ar(13).range(1, 2); BPF.ar(in, z, (10 / z) * 2).sum }).play )
code description
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