FreeVerb2

object FreeVerb2 extends ProductReader[FreeVerb2]

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.1
 val in2  = Pan2.ar(in, TRand.ar(-1, 1, tr))
 val mix  = MouseX.kr
 val room = MouseY.kr
 FreeVerb2.ar(in2 out 0, in2 out 1, mix, room, "damp".kr(0.5))
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[FreeVerb2]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(inL: GE, inR: GE, mix: GE, room: GE, damp: GE): FreeVerb2
Value Params
damp

high frequency attenuation (1 is maximum attenuation)

inL

left channel of input signal to reverberate

inR

right channel of input signal to reverberate

mix

dry/wet balance from zero (only dry) to one (only wet)

room

room size

def read(in: RefMapIn, key: String, arity: Int): FreeVerb2