scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / Dpoll.schelp
blob539f90b9ce9088c796caccdb2827aa428d4c25e6
1 class:: Dpoll
2 summary:: Print the current output value of a demand rate UGen
3 categories:: UGens>Demand, UGens>Info
5 description::
6 Print the current output value of a demand rate UGen.
7 WARNING:: Printing values from the Server in intensive for the CPU. Poll should be used for debugging purposes. ::
9 classmethods::
10 private:: new1
12 method:: new
13 argument:: in
14 ugen to poll vaues from
15 argument:: label
16 a label string
17 argument:: run
18 active if 1, inactive if 0. can be a demand ugen (default: 1)
19 argument:: trigid
20 discussion::
21 the print-out is in the form: code:: label: value block offset: offset. ::
23 structurally related: link::Classes/Poll::
25 examples::
26 code::
28 { Duty.kr(0.5, 0, Dpoll(Dseries(0, 1, inf) * 2)); 0.0 }.play;
30 // posts only when cursor is in right half of the screen
31 { Duty.kr(0.5, 0, Dpoll(Dseries(0, 1, inf) * 2, run: MouseX.kr > 0.5)); 0.0 }.play;
33 // label
34 { LFPulse.ar(Duty.kr(0.5, 0, Dpoll(Dseries(0, 1, inf) % 10 + 1 * 30, "value"))) * 0.1 }.play;
36 // block offset:
37 { Duty.ar(0.511, 0, Dpoll(Dseries(0, 1, inf) * 2)); 0.0 }.play;
39 // multichannel expansion:
42         {
43         var x = Duty.kr(0.5, 0,
44                 Dpoll([Dseries(0, 1, inf), Dgeom(1, 1.1, inf)], ["first", "second"])
45         );
46         LFPulse.ar(100 + (x * 100)) * 0.1
47         }.play
50 { Duty.kr(0.5, 0, Dpoll(( Dseries(0, 1, inf) + _ ).dup, ("value" + _).dup)); 0.0 }.play;
53 // the message dpoll(label, run, trigid) is a shorthand:
55 { Duty.kr(0.5, 0, Dseries(0, 1, inf).dpoll); 0.0 }.play;
56 { Duty.ar(0.5, 0, SinOsc.ar(0.1).dpoll); 0.0 }.play;