object TRand extends ProductReader[TRand] with Serializable
A UGen that generates a new random decimal value each time it is triggered,
using a uniform distribution from lo
to hi
.
Note: Audio-rate inputs for lo
and hi
are currently broken in
SuperCollider, and will therefore be converted to control-rate inputs.
Examples
// random sine frequencies, triggered by mouse button play { val tr = MouseButton.kr(lag = 0) val m = Mix.fill(10)(SinOsc.ar(TRand.kr(200.0, 800.0, tr))) m * Linen.kr(tr, sustain = 0.025, release = 2) }
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TRand
- Serializable
- ProductReader
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def ar(lo: GE = 0.0f, hi: GE = 1.0f, trig: GE): TRand
- lo
lower limit of the output range
- hi
upper limit of the output range
- trig
signal to trigger new random number
- def kr(lo: GE = 0.0f, hi: GE = 1.0f, trig: GE): TRand
- lo
lower limit of the output range
- hi
upper limit of the output range
- trig
signal to trigger new random number
- def read(in: RefMapIn, key: String, arity: Int): TRand
- Definition Classes
- TRand → ProductReader