2 summary:: Impulse oscillator.
4 categories:: UGens>Generators>Deterministic
9 Outputs non-bandlimited single sample impulses.
23 Phase offset in cycles (0..1).
28 Output will be multiplied by this value.
33 This value will be added to the output.
36 An Impulse with frequency 0 returns a single impulse.
41 { Impulse.ar(800, 0.0, 0.5, 0) }.play
43 { Impulse.ar(XLine.kr(800,100,5), 0.0, 0.5, 0) }.play
48 { Impulse.ar(4, [0, MouseX.kr(0, 1)], 0.2) }.play;
51 an Impulse with frequency 0 returns a single impulse:
53 SynthDef(\imp, { OffsetOut.ar(0, Impulse.ar(0)); FreeSelf.kr(Impulse.kr(0)); }).add;
54 fork { (1 / (1..60).scramble).do { |dt| Synth.grain(\imp); dt.wait } };