|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object ddf.minim.signals.Oscillator ddf.minim.signals.SawWave
public class SawWave
A saw wave is characterized by rising edge followed by a sharp drop off.
Field Summary |
---|
Fields inherited from class ddf.minim.signals.Oscillator |
---|
TWO_PI |
Constructor Summary | |
---|---|
SawWave(float frequency,
float amplitude,
float sampleRate)
Constructs a saw wave with the given frequency, amplitude and sample rate. |
Method Summary | |
---|---|
protected float |
value(float step)
Returns the value of the waveform at step . |
Methods inherited from class ddf.minim.signals.Oscillator |
---|
amplitude, frequency, generate, generate, noPortamento, pan, period, portamento, sampleRate, setAmp, setAudioListener, setFreq, setPan, setPanNoGlide |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SawWave(float frequency, float amplitude, float sampleRate)
frequency
- the frequency of the pulse waveamplitude
- the amplitude of the pulse wavesampleRate
- the sample rate of the pulse waveMethod Detail |
---|
protected float value(float step)
Oscillator
step
. To take
advantage of all of the work that Oscillator
does, you can
create your own periodic waveforms by extending Oscillator
and implementing this function. All of the oscillators included with Minim
were created in this way.
value
in class Oscillator
step
- an offset from the beginning of the waveform's period
step
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |