final case class Select(rate: Rate, index: GE, in: GE) extends SingleOut with Product with Serializable
A UGen which selects among a sequence of inputs, according to an index signal.
Note that, although only one signal of the multi
input is let through at a
time, still all ugens are continuously running.
- index
an index signal into the channels of the
in
argument. The index is automatically clipped to lie between0
andin.numOutputs - 1
. The index is truncated to its integer part (not rounded), hence using for instance an index of0.9
will still be interpreted as index0
.- in
a graph element which is composed of the channels to be indexed.
- See also
- Alphabetic
- By Inheritance
- Select
- Serializable
- SingleOut
- SomeOut
- Lazy
- GE
- UGenSource
- Expander
- Lazy
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Select(rate: Rate, index: GE, in: GE)
- index
an index signal into the channels of the
in
argument. The index is automatically clipped to lie between0
andin.numOutputs - 1
. The index is truncated to its integer part (not rounded), hence using for instance an index of0.9
will still be interpreted as index0
.- in
a graph element which is composed of the channels to be indexed.