Packages

final case class LinLin(in: GE, srcLo: GE = 0f, srcHi: GE = 1f, dstLo: GE = 0f, dstHi: GE = 1f) extends GE.Lazy with Product with Serializable

A graph element which maps a linear range to another linear range. The equivalent formula is (in - srcLo) / (srcHi - srcLo) * (dstHi - dstLo) + dstLo.

Note: No clipping is performed. If the input signal exceeds the input range, the output will also exceed its range.

Examples
// oscillator to frequency range
play {
  val mod = SinOsc.kr(Line.kr(1, 10, 10))
  SinOsc.ar(LinLin(mod, -1, 1, 100, 900)) * 0.1
}
in

The input signal to convert.

srcLo

The lower limit of input range.

srcHi

The upper limit of input range.

dstLo

The lower limit of output range.

dstHi

The upper limit of output range.

See also

LinExp

Clip

MulAdd

Linear Supertypes
Serializable, GE.Lazy, GE, Expander[UGenInLike], Lazy, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinLin
  2. Serializable
  3. Lazy
  4. GE
  5. Expander
  6. Lazy
  7. Product
  8. Equals
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LinLin(in: GE, srcLo: GE = 0f, srcHi: GE = 1f, dstLo: GE = 0f, dstHi: GE = 1f)

    in

    The input signal to convert.

    srcLo

    The lower limit of input range.

    srcHi

    The upper limit of input range.

    dstLo

    The lower limit of output range.

    dstHi

    The upper limit of output range.

Value Members

  1. val dstHi: GE
  2. val dstLo: GE
  3. val in: GE
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. def rate: MaybeRate
    Definition Classes
    LinLinGE
  6. val srcHi: GE
  7. val srcLo: GE