2 summary:: Break a continuous signal into line segments
3 related:: Classes/Lag, Classes/VarLag, Classes/Slew
4 categories:: UGens>Filters>Linear
9 Break a continuous signal into linearly interpolated segments with specific durations.
11 Feeding Ramp with noise is similar to link::Classes/LFNoise1::
13 Ramp.kr(WhiteNoise.kr(1),0.5)
20 For smoothing out control signals, take a look at link::Classes/Lag:: and link::Classes/VarLag::
33 segment duration in seconds.
38 Output will be multiplied by this value.
43 This value will be added to the output.
53 SinOsc.ar( // sine wave
54 Ramp.kr( // lag the modulator
55 LFPulse.kr(4, 0, 0.5, 50, 400), // frequency modulator
56 Line.kr(0, 1, 15) // modulate lag time
68 pulse = LFPulse.kr(8.772);
69 Out.kr(0,[Ramp.kr(pulse, 0.025), Lag.kr(pulse, 0.025), pulse]);
70 }.play(Server.internal);
71 Server.internal.scope(3, bufsize: 44100, rate: \control, zoom: 40);