define(["Tone/core/Tone", "Tone/core/Gain"], function (Tone) { /** * @class Tone.Zero outputs 0's at audio-rate. The reason this has to be * it's own class is that many browsers optimize out Tone.Signal * with a value of 0 and will not process nodes further down the graph. * @extends {Tone} */ Tone.Zero = function(){ /** * The gain node * @type {Tone.Gain} * @private */ this._gain = this.input = this.output = new Tone.Gain(); Tone.context._zeros.connect(this._gain); }; Tone.extend(Tone.Zero); /** * clean up * @return {Tone.Zero} this */ Tone.Zero.prototype.dispose = function(){ Tone.prototype.dispose.call(this); this._gain.dispose(); this._gain = null; return this; }; return Tone.Zero; });