Packages

object Impulse extends ProductReader[Impulse] with Serializable

A non-band-limited generator UGen for single sample impulses.

Examples
// modulating frequency
play { Impulse.ar(XLine.kr(100, 20000, 10)) * 0.3 }
// modulating amplitude
play { Impulse.kr(XLine.kr(1, 200, 10)) * SinOsc.ar(440) * 0.3 }
// modulating phase
play { Impulse.ar(4, Seq(DC.kr(0), MouseX.kr(0, 1))) * 0.3 }
See also

LFPulse

Dust

Blip

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Impulse
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(freq: GE = 440.0f, phase: GE = 0.0f): Impulse

    freq

    frequency in Hertz. A value of zero can be used to generate a singular impulse.

    phase

    phase offset in cycles (0 to 1)

  2. def ar: Impulse
  3. def kr(freq: GE = 440.0f, phase: GE = 0.0f): Impulse

    freq

    frequency in Hertz. A value of zero can be used to generate a singular impulse.

    phase

    phase offset in cycles (0 to 1)

  4. def kr: Impulse
  5. def read(in: RefMapIn, key: String, arity: Int): Impulse
    Definition Classes
    ImpulseProductReader