Explicitly include a boost "windows" folder even on linux
[supercollider.git] / HelpSource / Classes / Dust2.schelp
blob37ac52f9f910c972f9df9cb47a98e3726402609a
1 class:: Dust2
2 summary:: Random impulses.
3 related:: Classes/Dust
4 categories::  UGens>Generators>Stochastic
7 Description::
9 Generates random impulses from -1 to +1.
12 classmethods::
14 method::ar, kr
16 argument::density
17 Average number of impulses per second.
19 argument::mul
20 Output will be multiplied by this value.
22 argument::add
23 This value will be added to the output.
25 Examples::
27 code::
30 SynthDef("help-Dust2", { arg out=0;
31         Out.ar(out,
32                 Dust2.ar(200, 0.5)
33         )
34 }).play;
38 SynthDef("help-Dust2", { arg out=0;
39         Out.ar(out,
40                 Dust2.ar(XLine.kr(20000, 2, 10), 0.5)
41         )
42 }).play;