Packages

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)
}
See also

IRand

TRand

ExpRand

RandSeed

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TRand
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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

  2. 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

  3. def read(in: RefMapIn, key: String, arity: Int): TRand
    Definition Classes
    TRandProductReader