1class:: Dust2
2summary:: Random impulses.
3related:: Classes/Dust
4categories::  UGens>Generators>Stochastic
5
6
7Description::
8
9Generates random impulses from -1 to +1.
10
11
12classmethods::
13
14method::ar, kr
15
16argument::density
17Average number of impulses per second.
18
19argument::mul
20Output will be multiplied by this value.
21
22argument::add
23This value will be added to the output.
24
25Examples::
26
27code::
28
29(
30SynthDef("help-Dust2", { arg out=0;
31	Out.ar(out,
32		Dust2.ar(200, 0.5)
33	)
34}).play;
35)
36
37(
38SynthDef("help-Dust2", { arg out=0;
39	Out.ar(out,
40		Dust2.ar(XLine.kr(20000, 2, 10), 0.5)
41	)
42}).play;
43)
44
45::
46
47