Explicitly include a boost "windows" folder even on linux
[supercollider.git] / HelpSource / Classes / PparGroup.schelp
blobe96dc7b5c41b4a4b969f6d17a6f8573b46fa81c0
1 class:: PparGroup
2 summary:: Starts a new ParGroup and plays the pattern in this group
3 related:: Classes/ParGroup, Classes/Pgroup
4 categories:: Streams-Patterns-Events>Patterns>Server Control
6 description::
8 The class has a semantics similar to link::Classes/Pgroup::, but instead of a Group, it creates a ParGroup on the
9 server.
11 Examples::
13 code::
15 var p, q, r, o;
16 p = Pbind(\degree, Prand((0..7),12), \dur, 0.3, \legato, 0.2);
18 Ppargroup(p).play;
20 // post the node structure:
21 fork {
22         s.queryAllNodes;
23         3.wait;
24         s.queryAllNodes;
25         2.wait;
26         s.queryAllNodes;