Packages

object Dgeom extends ProductReader[Dgeom] with Serializable

A demand-rate UGen that produces a geometric series. Each value is calculated as

x[t] = x[t-1] * grow

With x[0] given as argument start.

Examples
// increasing frequency
play {
  val in = Dgeom(1, 1.2, 15)
  val tr = Impulse.kr(5)
  val v  = Demand.kr(tr, in)
  v.poll(tr)
  val f  = v * 30 + 300
  SinOsc.ar(f) * 0.1
}
See also

Dseries

Demand

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

Value Members

  1. def read(in: RefMapIn, key: String, arity: Int): Dgeom
    Definition Classes
    DgeomProductReader