A stereophonic reverb UGen. All parameters are specified in and automatically
clipped to the range 0 to 1. The UGen is stateless insofar it does not use a
random number generator. However, if the same input is used for left and right
channel, the output channels are different and uncorrelated. There is also some
cross-feed between the two channels.
Examples
// mouse control for mix and room, random input pan
play {
val tr = Impulse.ar(1)
val in = Decay.ar(tr, 0.25) * LFCub.ar(1200) * 0.1val in2 = Pan2.ar(in, TRand.ar(-1, 1, tr))
val mix = MouseX.kr
val room = MouseY.kr
FreeVerb2.ar(in2 \ 0, in2 \ 1, mix, room, "damp".kr(0.5))
}
A stereophonic reverb UGen. All parameters are specified in and automatically clipped to the range 0 to 1. The UGen is stateless insofar it does not use a random number generator. However, if the same input is used for left and right channel, the output channels are different and uncorrelated. There is also some cross-feed between the two channels.
Examples
GVerb
FreeVerb