«Midterm Question 2» by Mason McCormack

on 31 Oct'16 05:34 in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(
SynthDef("sawSynth", {arg freq, amp;
	
	Out.ar(0, Splay.ar(LPF.ar(in: Saw.ar(freq * [0.99, 1.0, 1.001, 1.008], mul:Env.perc(attackTime:0.1, releaseTime:2, level:amp).kr(2)),freq: 2000)))

}).add;
)

(
Pbind(
	\instrument, "sawSynth",
	\degree, Pseq([1,3,5,7], inf),
	\dur, 0.111, 
	
).play
)
raw 308 chars (focus & ctrl+a+c to copy)
reception
comments
Bruno Ruviaro user 03 Nov'16 23:14

1pt