final case class PV_RandWipe(chainA: GE, chainB: GE, wipe: GE, trig: GE) extends SingleOut with ControlRated with HasSideEffect with IsIndividual with Product with Serializable
A phase vocoder UGen that cross-fades between two input spectra by taking bins randomly from them according to a given probability.
- chainA
the first FFT'ed buffer (this gets replaced by the output signal)
- chainB
the second FFT'ed buffer
- wipe
the crossfader position from 0.0 (all bins are taken from
chainA
) to 1.0 (all bins are taken fromchainB
). For instance, if wipe is 0.5, half of the bins are taken from either input. The decision whether a bin is taken from A or B is random, however remains constant between two triggers.- trig
a signal the triggers the re-newed process of determining for each bin whether it will be taken from input A or B. A trigger occurs when passing from non-positive to positive value.
- See also
- Alphabetic
- By Inheritance
- PV_RandWipe
- Serializable
- IsIndividual
- HasSideEffect
- ControlRated
- SingleOut
- SomeOut
- Lazy
- GE
- UGenSource
- Expander
- Lazy
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new PV_RandWipe(chainA: GE, chainB: GE, wipe: GE, trig: GE)
- chainA
the first FFT'ed buffer (this gets replaced by the output signal)
- chainB
the second FFT'ed buffer
- wipe
the crossfader position from 0.0 (all bins are taken from
chainA
) to 1.0 (all bins are taken fromchainB
). For instance, if wipe is 0.5, half of the bins are taken from either input. The decision whether a bin is taken from A or B is random, however remains constant between two triggers.- trig
a signal the triggers the re-newed process of determining for each bin whether it will be taken from input A or B. A trigger occurs when passing from non-positive to positive value.
Value Members
- val chainA: GE
- val chainB: GE
- lazy val hashCode: Int
- Definition Classes
- UGenSource → AnyRef → Any
- final def name: String
- Definition Classes
- UGenSource
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def rate: Rate
- Definition Classes
- ControlRated
- val trig: GE
- val wipe: GE