File: DemandingStudies.scd

package info (click to toggle)
supercollider 1%3A3.4.5-1wheezy1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,972 kB
  • sloc: cpp: 116,645; lisp: 64,914; ansic: 10,725; python: 3,548; perl: 766; ruby: 487; sh: 152; makefile: 117; xml: 13
file content (21 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

(
SynthDef(\demanding, { arg impulsefreq = 10;
	var freq, trig, reset, seq1, seq2, signal;
	trig = Impulse.kr(impulsefreq);
	seq1 = Drand([72, 75, 79, 82] - 12, inf).midicps; 
	seq2 = Dseq([72, 75, 79, Drand([82,84,86])], inf).midicps; 
	freq = Demand.kr(trig, 0, [seq1, seq2]);
	signal = (SinOsc.ar(freq + [0,0.7]) + Saw.ar(freq + [0,0.7], 0.3)).distort.log.distort.cubed * 0.1;
	
	Out.ar(0, signal);
}).add;
)


x = Synth.new(\demanding)

x.set(\impulsefreq, 6)
x.set(\impulsefreq, 4)
x.set(\impulsefreq, 2)
x.set(\impulsefreq, 1)