package js.html.audio
extends AudioNode › EventTarget
Available on jsThe
OscillatorNode
interface represents a periodic waveform, like a sine wave. It is anAudioNode
audio-processing module that causes a given frequency of sine wave to be created — in effect, a constant tone.Documentation OscillatorNode by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
read only detune:AudioParam
An a-rate AudioParam
representing detuning of oscillation in cents (though the AudioParam` returned is read-only, the value it represents is not.)
read only frequency:AudioParam
An a-rate AudioParam
representing the frequency of oscillation in hertz (though the AudioParam` returned is read-only, the value it represents is not.)
onended:Function
type:OscillatorType
Represents the shape of the oscillator wave generated. Different waves will produce different tones.
setPeriodicWave (periodicWave:PeriodicWave):Void
Used to point to a PeriodicWave
defining a periodic waveform that can be used to shape the oscillator's output, when type = "custom"
is used. This replaces the now-obsolete OscillatorNode.setWaveTable
.
start (when:Float = 0.0):Void
Throws:
null |
DOMError |
---|
stop (when:Float = 0.0):Void
Throws:
null |
DOMError |
---|
© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/js/html/audio/OscillatorNode.html