LFPar

object LFPar extends ProductReader[LFPar]

A sine-like oscillator UGen with a shape made of two parabolas. It has audible odd harmonics and is non-band-limited. Its output ranges from -1 to +1.

===Examples===

// modulating frequency
play { LFPar.ar(XLine.kr(100, 20000, 10)) * 0.1 }
// modulating amplitude
play { LFPar.kr(XLine.kr(1, 200, 10)) * SinOsc.ar(440) * 0.1 }
// used as both oscillator and LFO
play { LFPar.ar(LFPar.kr(LFPar.kr(0.2).mulAdd(8,10)).mulAdd(400,800)) * 0.1 }
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[LFPar]
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: LFPar
def ar(freq: GE, iphase: GE): LFPar
Value Params
freq

oscillator frequency in Hertz

iphase

initial phase in cycle (0 to 1) ''(init-time only)''

def kr: LFPar
def kr(freq: GE, iphase: GE): LFPar
Value Params
freq

oscillator frequency in Hertz

iphase

initial phase in cycle (0 to 1) ''(init-time only)''

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