linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / Saw.schelp
blob274bdd42966fc07c2457694785c1f9e43ee79970
1 class:: Saw
2 summary:: Band limited sawtooth.
3 related:: Classes/SyncSaw, Classes/VarSaw, Classes/LFSaw
4 categories::  UGens>Generators>Deterministic
7 Description::
9 Band limited sawtooth wave generator.
12 classmethods::
14 method::ar
16 argument::freq
18 Frequency in Hertz.
21 argument::mul
23 Output will be multiplied by this value.
26 argument::add
28 This value will be added to the output.
31 Examples::
33 code::
35 // modulating the frequency
37 { Saw.ar(XLine.kr(40,4000,6),0.2) }.play;
39 // two band limited sawtooth waves through a resonant low pass filter
41 { RLPF.ar(Saw.ar([100,250],0.1), XLine.kr(8000,400,5), 0.05) }.play;