linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / Padd.schelp
blob010dfc0a07bd4d0453d5be9f3bb0bdd2ee1a9aa5
1 class:: Padd
2 summary:: add to value of a key in event stream
3 related:: Classes/Paddp, Classes/Pmul
4 categories:: Streams-Patterns-Events>Patterns>Math
6 ClassMethods::
8 method::new
10 argument::value
11 can be a pattern or a stream. The resulting stream ends when that incoming stream ends.
13 Examples::
15 code::
17 var a, b;
18 a = Padd(\freq, 801, Pbind(\freq, 100));
19 x = a.asStream;
20 9.do({ x.next(Event.new).postln; });
24 code::
26 var a, b;
27 a = Padd(\freq, Pseq([401, 801], 2), Pbind(\freq, 100));
28 x = a.asStream;
29 9.do({ x.next(Event.new).postln; });
33 code::
34 //sound example
36 SynthDef(\sinegrain,
37         { arg out=0, freq=440, gate=1;
38                 var env;
39                 env = EnvGen.kr(Env.asr(0.001, 1, 0.2), gate, doneAction:2);
40                 Out.ar(out, SinOsc.ar(freq, 0, env * 0.1))
41         }).add;
45 a = Pbind(\dur, 0.5, \instrument, \sinegrain, \freq, 440);
46 b = Padd(\freq, Pseq([10, 30, 100], inf), a);
47 b.play;