«Quiz 4a #10» by IamSuperCollider

on 15 Oct'16 22:00 in code forkmusc115scuquiz

Quiz 4a for MUSC 115, pp. 62-84 from Gentle Intro to SuperCollider.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//Version 1
//P(eace)Bind
//If error messages could experience Nirvanna, it would sound like this.
(
{
Saw.ar(
		freq: SinOsc.kr([60, 63, 67, 70]).range(440,880),
		mul:LFNoise0.kr(freq: [0.25,1]).range(0,1),
	)
}.play

)


//Version 2
//SuperCollider
//Sometimes in life, you feel like you need to collide with things.
(
{
Pulse.ar(
		freq: SinOsc.kr([60, 63, 67, 70]).range(30,70),
		mul: LFPulse.kr(freq: [0.25,1]).range(0,1)
	)
}.play

)
ancestors
«Re: Quiz 4a» by IamSuperCollider (private)
full graph
raw 466 chars (focus & ctrl+a+c to copy)
reception
comments