Uses of Class
toxi.math.waves.AbstractWave

Packages that use AbstractWave
toxi.math.waves   
 

Uses of AbstractWave in toxi.math.waves
 

Subclasses of AbstractWave in toxi.math.waves
 class AMFMSineWave
           Amplitude and frequency modulated sine wave.
 class ConstantWave
          Implements a constant value as waveform.
 class FMHarmonicSquareWave
           Frequency modulated bandwidth-limited square wave using a fourier series of harmonics.
 class FMSawtoothWave
           Frequency modulated bandwidth unlimited pure sawtooth wave.
 class FMSineWave
           Frequency modulated sine wave.
 class FMSquareWave
           Frequency modulated bandwidth unlimited pure digital square wave.
 class FMTriangleWave
          Implements a frequency modulated triangular wave with its peak at PI: "/\"
 class SineWave
          Standard Sine wave at fixed frequency and values normalized to the given amplitude.
 

Fields in toxi.math.waves declared as AbstractWave
 AbstractWave AMFMSineWave.amod
           
 AbstractWave FMTriangleWave.fmod
           
 AbstractWave FMSquareWave.fmod
           
 AbstractWave FMSineWave.fmod
           
 AbstractWave FMSawtoothWave.fmod
           
 AbstractWave FMHarmonicSquareWave.fmod
           
 AbstractWave AMFMSineWave.fmod
           
 

Constructors in toxi.math.waves with parameters of type AbstractWave
AMFMSineWave(float phase, float freq, AbstractWave fmod, AbstractWave amod)
          Creates a new instance from
AMFMSineWave(float phase, float freq, float offset, AbstractWave fmod, AbstractWave amod)
           
FMHarmonicSquareWave(float phase, float freq, AbstractWave fmod)
           
FMHarmonicSquareWave(float phase, float freq, float amp, float offset, AbstractWave fmod)
           
FMSawtoothWave(float phase, float freq, AbstractWave fmod)
           
FMSawtoothWave(float phase, float freq, float amp, float offset, AbstractWave fmod)
           
FMSineWave(float phase, float freq, AbstractWave fmod)
           
FMSineWave(float phase, float freq, float amp, float offset, AbstractWave fmod)
           
FMSquareWave(float phase, float freq, AbstractWave fmod)
           
FMSquareWave(float phase, float freq, float amp, float offset, AbstractWave fmod)
           
FMTriangleWave(float phase, float freq, float amp, float offset, AbstractWave fmod)