TwoPole

object TwoPole extends ProductReader[TwoPole]

A two pole filter UGen. This provides lower level access to setting of pole location. For general purposes Resonz is better.

===Examples===

// static frequency
play { TwoPole.ar(WhiteNoise.ar(0.005), 2000, 0.95) }
// sweeping frequency
play { TwoPole.ar(WhiteNoise.ar(0.005), XLine.kr(800, 8000, 8), 0.95) }
// mouse controlled frequency
play { TwoPole.ar(WhiteNoise.ar(0.005), MouseX.kr(800, 8000, 1), 0.95) }
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[TwoPole]
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, freq: GE, radius: GE): TwoPole
Value Params
freq

frequency of pole angle, in Hertz

in

input signal to be filtered

radius

radius of pole angle. Should be between 0 and 1

def kr(in: GE, freq: GE, radius: GE): TwoPole
Value Params
freq

frequency of pole angle, in Hertz

in

input signal to be filtered

radius

radius of pole angle. Should be between 0 and 1

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