linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / Crackle.schelp
blob8e32a75b26110cce6e9be00a7f127e06f1328772
1 class:: Crackle
2 summary:: Chaotic noise function.
3 related:: Classes/LatoocarfianN, Classes/Logistic
4 categories::  UGens>Generators>Stochastic
7 Description::
9 A noise generator based on a chaotic function.
12 classmethods::
14 method::ar, kr
16 argument::chaosParam
18 A parameter of the chaotic function with useful values from
19 just below 1.0 to just above 2.0. Towards 2.0 the sound crackles.
22 argument::mul
23 Output will be multiplied by this value.
25 argument::add
26 This value will be added to the output.
28 Examples::
30 code::
31 { Crackle.ar(1.95, 0.5) }.play;
33 // modulate chaos parameter
34 { Crackle.ar(Line.kr(1.0, 2.0, 3), 0.5, 0.5) }.play;