Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Midterm Q2
name
code content
( SynthDef("sawSynth",{arg freq, amp; var env, snd; env = Env.perc( attackTime:0.1, releaseTime:2, level:amp).kr(doneAction: 2); snd = Saw.ar( freq:freq*[0.99, 1.0, 1.001, 1.008], mul: env); snd = LPF.ar(in: snd,freq:2000); snd = Splay.ar(snd); Out.ar(0,snd); }).add; ) ( Pbind( \instrument, "sawSynth", \freq, Pwhite(300, 700, inf), \amp, Pwhite(0.15, 0.2) ).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