@@ -5,17 +5,17 @@ define(function (require) {
5
5
var Effect = require ( 'effect' ) ;
6
6
7
7
/**
8
- * A p5.Filter uses a Web Audio Biquad Filter to filter
9
- * the frequency response of an input source. Inheriting
10
- * classes include:<br/ >
11
- * * <code>p5.LowPass</code> - allows frequencies below
12
- * the cutoff frequency to pass through, and attenuates
13
- * frequencies above the cutoff.<br/>
14
- * * <code>p5.HighPass</code> - the opposite of a lowpass
15
- * filter. <br/>
16
- * * <code>p5.BandPass</code> - allows a range of
17
- * frequencies to pass through and attenuates the frequencies
18
- * below and above this frequency range.<br/>
8
+ * <p> A p5.Filter uses a Web Audio Biquad Filter to filter
9
+ * the frequency response of an input source. Subclasses
10
+ * include:</p >
11
+ * * <a href="/reference/#/p5.LowPass">< code>p5.LowPass</code></a>:
12
+ * Allows frequencies below the cutoff frequency to pass through,
13
+ * and attenuates frequencies above the cutoff.<br/>
14
+ * * <a href="/reference/#/p5.HighPass">< code>p5.HighPass</code></a>:
15
+ * The opposite of a lowpass filter. <br/>
16
+ * * <a href="/reference/#/p5.BandPass">< code>p5.BandPass</code></a>:
17
+ * Allows a range of frequencies to pass through and attenuates
18
+ * the frequencies below and above this frequency range.<br/>
19
19
*
20
20
* The <code>.res()</code> method controls either width of the
21
21
* bandpass, or resonance of the low/highpass cutoff frequency.
@@ -213,8 +213,9 @@ define(function (require) {
213
213
* its method <code>setType('lowpass')</code>.
214
214
* See p5.Filter for methods.
215
215
*
216
- * @method LowPass
217
- * @for p5
216
+ * @class p5.LowPass
217
+ * @constructor
218
+ * @extends {p5.Filter }
218
219
*/
219
220
p5 . LowPass = function ( ) {
220
221
p5 . Filter . call ( this , 'lowpass' ) ;
@@ -227,8 +228,9 @@ define(function (require) {
227
228
* its method <code>setType('highpass')</code>.
228
229
* See p5.Filter for methods.
229
230
*
230
- * @method HighPass
231
- * @for p5
231
+ * @class p5.HighPass
232
+ * @constructor
233
+ * @extends {p5.Filter }
232
234
*/
233
235
p5 . HighPass = function ( ) {
234
236
p5 . Filter . call ( this , 'highpass' ) ;
@@ -241,8 +243,9 @@ define(function (require) {
241
243
* its method <code>setType('bandpass')</code>.
242
244
* See p5.Filter for methods.
243
245
*
244
- * @method BandPass
245
- * @for p5
246
+ * @class BandPass
247
+ * @constructor
248
+ * @extends {p5.Filter }
246
249
*/
247
250
p5 . BandPass = function ( ) {
248
251
p5 . Filter . call ( this , 'bandpass' ) ;
0 commit comments