QcPenPrinter: no need to allocate QPrintDialog on heap
[supercollider.git] / HelpSource / Classes / Ptuple.schelp
blob8c4af0728d0588922a602148c6e8b0d7bc15e4b6
1 class:: Ptuple
2 summary:: combine a list of streams to a stream of lists
3 related:: Classes/Ppar
4 categories:: Streams-Patterns-Events>Patterns>List
6 description::
8 At each iteration, Ptuple returns a tuple (array) combining the output of each of the patterns in the list. When any of the patterns returns a nil, Ptuple ends that 'repeat' and restarts all of the streams.
10 ClassMethods::
12 method::new
14 argument::list
15 an link::Classes/Array:: of patterns.
17 argument::repeats
18 an link::Classes/Integer:: or inf.
20 Examples::
22 code::
24 var a, b;
25 a = Pseq([1, 2, 3], inf);
26 b = Pseq([65, 76], inf);
27 c = Ptuple([a, a, b], inf);
28 x = c.asStream;
29 8.do({ x.next.postln; });
34 var a, b;
35 a = Pseq([1, 2, 3], inf);
36 b = Pseq([65, 76], 3); // stops after 3 cycles
37 c = Ptuple([a, a, b], 4); // stops after 4 cycles
38 x = c.asStream;
39 8.do({ x.next.postln; });
43 //Ptuple used as a sequence of pitches (chords)
46 SynthDef(\help_sinegrain,
47         { arg out=0, freq=440, sustain=0.05;
48                 var env;
49                 env = EnvGen.kr(Env.perc(0.01, sustain, 0.2), doneAction:2);
50                 Out.ar(out, SinOsc.ar(freq, 0, env))
51         }).add;
55 a = Pseq([73, 71, 69, 69, 65, 64], inf);
56 b = Pseq([0, 0, 0, 4, 0, 3, 2], inf) + a;
57 c = Ptuple([a, b], inf);
58 x = c.asStream;
59 Routine({
60         var chord;
61         loop({
62                 chord = x.next.postln.midicps;
63                 (instrument: \help_sinegrain, freq: chord).play;
64         0.2.wait;
65         })
66 }).play;