Packages

object Slew extends ProductReader[Slew] with Serializable

A slew rate limiter UGen. Limits the slope of an input signal. The slope is expressed in units per second.

Since the UGen is initialized with the initial value of the input signal, some tricks must be applied to set it to an alternative start value. For example:

val in = Select.kr(ToggleFF.kr(1), Seq("start".ir, "target".kr))
Slew.kr(in)  // begins at "start" and moves towards "target"
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Slew
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(in: GE, up: GE = 1.0f, down: GE = 1.0f): Slew

    in

    input signal

    up

    maximum upward slope.

    down

    maximum downward slope.

  2. def kr(in: GE, up: GE = 1.0f, down: GE = 1.0f): Slew

    in

    input signal

    up

    maximum upward slope.

    down

    maximum downward slope.

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