linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / LFSaw.schelp
blob5fae36036972d515354f727a286691eb747ace97
1 class:: LFSaw
2 summary:: Sawtooth oscillator
3 related:: Classes/LFCub, Classes/LFPar, Classes/LFPulse, Classes/LFTri, Classes/Saw
4 categories::  UGens>Generators>Deterministic
7 Description::
9 A non-band-limited sawtooth oscillator. Output ranges from -1 to +1.
12 classmethods::
14 method::ar, kr
16 argument::freq
17 Frequency in Hertz.
19 argument::iphase
21 Initial phase offset. For efficiency reasons this is a value
22 ranging from 0 to 2.
25 argument::mul
26 Output will be multiplied by this value.
28 argument::add
29 This value will be added to the output.
31 Examples::
33 code::
34 { LFSaw.ar(500, 1, 0.1) }.play
36 // used as both Oscillator and LFO:
37 { LFSaw.ar(LFSaw.kr(4, 0, 200, 400), 0, 0.1) }.play