diff --git a/sclang-play/tutorial.sc b/sclang-play/tutorial.sc index 083b8b5..b87f65d 100644 --- a/sclang-play/tutorial.sc +++ b/sclang-play/tutorial.sc @@ -73,3 +73,51 @@ }); }.play; ) + +( + { + PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) + }.plot; +) + +( + { + PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) + }.plot(1); +) + +( + { + PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) + }.scope; +) + +( + { + [ + SinOsc.ar(440, 0, 0.2), + SinOsc.ar(442, 0, 0.2) + ] + }.scope; +) + +( + { + [ + SinOsc.ar(440, 0, 0.2), + SinOsc.ar(442, 0, 0.2) + ] + }.scope(zoom: 10); +) + +( + s.scope; +) + +( + s.boot; +) + +( + s.kill; +)