2 summary:: Hard sync sawtooth wave.
3 related:: Classes/Saw, Classes/VarSaw, Classes/LFSaw
4 categories:: UGens>Generators>Deterministic
9 A sawtooth wave that is hard synched to a fundamental pitch. This
10 produces an effect similar to moving formants or pulse width modulation.
11 The sawtooth oscillator has its phase reset when the sync oscillator
12 completes a cycle. This is not a band limited waveform, so it may alias.
21 Frequency of the fundamental.
26 Frequency of the slave synched sawtooth wave. Should always be
33 Output will be multiplied by this value.
38 This value will be added to the output.
45 { SyncSaw.ar(100, Line.kr(100, 800, 12), 0.1) }.play;
50 SyncSaw.ar(800, 1200),
51 Impulse.ar(800) // to show sync rate
57 SyncSaw.ar(800, Line.kr(800, 1600, 0.01)), // modulate saw freq
58 Impulse.ar(800) // to show sync rate
62 // scoping the saw: hit 's' when focused on the scope window to compare the channels
67 SyncSaw.ar(freq, freq * MouseX.kr(1, 3)), // modulate saw freq
68 Impulse.ar(freq) // to show sync rate