object RateMethod
- Alphabetic
- By Inheritance
- RateMethod
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class Alias(name: String) extends RateMethod with Product with Serializable
Allows for a secondary method to be generated next to the default method.
Allows for a secondary method to be generated next to the default method. That is, it acts as a combination of
Default
andCustom
. This is currently not used for the standard UGens. - case class Custom(name: String) extends RateMethod with Product with Serializable
Uses a custom method name for the given implied rate.
Uses a custom method name for the given implied rate. Often the name will be
"apply"
, for example with the FFT UGens (PV_MagAbove
etc.). Then the UGen can be constructed asPV_MagAbove(...)
instead ofPV_MagAbove.kr(...)
.
Value Members
- case object Default extends RateMethod with Product with Serializable
The default method name for a given rate.
The default method name for a given rate. That is,
ar
for audio-rate,kr
for control-rate,ir
for scalar-rate, anddr
for demand-rate.