QcPenPrinter: no need to allocate QPrintDialog on heap
[supercollider.git] / HelpSource / Classes / Dseries.schelp
blobcb9faf2e5e220e0d43fe7b9631b2b14c4153728d
1 class:: Dseries
2 summary:: Demand rate arithmetic series UGen.
3 related:: Classes/Demand, Classes/Dgeom, Classes/Duty, Classes/TDuty
4 categories:: UGens>Demand
6 Description::
8 Demand rate arithmetic series UGen.
10 See link::Classes/Pseries:: for structurally related equivalent.
13 classmethods::
15 method::new
17 argument::start
19 Start value. Can be a number or any other UGen.
22 argument::step
24 Step value. Can be a number or any other UGen.
27 argument::length
29 Number of values to create.  Can be a number or any other UGen.
32 Examples::
34 code::
38         var a, freq, trig;
39         a = Dseries(0, 1, 15);
40         trig = Impulse.kr(MouseX.kr(1, 40, 1));
41         freq = Demand.kr(trig, 0, a) * 30 + 340;
42         SinOsc.ar(freq) * 0.1
44 }.play;
49         var a, freq, trig;
50         a = Dseries(0, 1, inf);
51         trig = Dust.kr(MouseX.kr(1, 40, 1));
52         freq = Demand.kr(trig, 0, a) % 15 * 30 + 340;
53         SinOsc.ar(freq) * 0.1
55 }.play;