Slew

object Slew extends ProductReader[Slew]

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"
Companion
class
trait Product
trait Mirror
trait ProductReader[Slew]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(in: GE, up: GE, down: GE): Slew
Value Params
down

maximum downward slope.

in

input signal

up

maximum upward slope.

def kr(in: GE, up: GE, down: GE): Slew
Value Params
down

maximum downward slope.

in

input signal

up

maximum upward slope.

def read(in: RefMapIn, key: String, arity: Int): Slew