scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / PparGroup.schelp
blob2683e5f4f7ce4f00a48bba3225f2c5dcbdeec1ca
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;