-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated files from updated build script (processing-doclet)
These files were created by running the `processingrefBuild.sh` script as updated by Kevin in processing/processing-doclet#5
- Loading branch information
Showing
64 changed files
with
566 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"brief": "Outputs all input frequencies at the same amplitude but changes \n their phase relationship.", | ||
"methods": [ | ||
{ | ||
"anchor": "AllPass_gain_", | ||
"name": "gain()", | ||
"desc": "Sets the gain for the filter." | ||
}, | ||
{ | ||
"anchor": "AllPass_process_", | ||
"name": "process()", | ||
"desc": "Start the effect." | ||
}, | ||
{ | ||
"anchor": "AllPass_stop_", | ||
"name": "stop()", | ||
"desc": "Stop the effect." | ||
} | ||
], | ||
"csspath": "../../", | ||
"isLibrary": "true", | ||
"classFields": [], | ||
"description": "This is an all pass filter. For signals processed, all frequencies hold the \n same amplitude but have their phase relationship modified using a delayline \n of one sample,<br/>\n <br/>\n <code>y(k) = -z * x(k) + x(k - 1) + z * y(k - 1)</code><br/>\n <br/>\n where <code>y</code> is the output, <code>x</code> is the input, \n <code>z</code> is the gain coefficient, and <code>k</code> is the signal.", | ||
"type": "class", | ||
"constructors": [ | ||
"AllPass(parent)" | ||
], | ||
"related": [], | ||
"name": "AllPass", | ||
"classanchor": "sound/AllPass", | ||
"category": "Effects", | ||
"subcategory": "AllPass", | ||
"parameters": [] | ||
} |
19 changes: 19 additions & 0 deletions
19
content/references/translations/en/sound/AllPass_gain_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"brief": "Sets the gain for the filter.", | ||
"related": [], | ||
"name": "gain()", | ||
"description": "Sets the gain for the filter in the range 0.0 - 1.0, where larger values \n increase phase displacement.", | ||
"syntax": [".gain(g)"], | ||
"returns": "void", | ||
"type": "method", | ||
"category": "Effects", | ||
"subcategory": "AllPass", | ||
"classanchor": "AllPass", | ||
"parameters": [ | ||
{ | ||
"name": "g", | ||
"description": "phase displacement in the range 0.0 - 1.0", | ||
"type": ["float"] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
content/references/translations/en/sound/AllPass_process_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"brief": "Start the effect.", | ||
"related": [], | ||
"name": "process()", | ||
"description": "Start the effect.", | ||
"syntax": [".process(input)"], | ||
"returns": "void", | ||
"type": "method", | ||
"category": "Effects", | ||
"subcategory": "AllPass", | ||
"classanchor": "AllPass", | ||
"parameters": [ | ||
{ | ||
"name": "input", | ||
"description": "Input sound source", | ||
"type": ["SoundObject"] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
content/references/translations/en/sound/AllPass_stop_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"brief": "Stop the effect.", | ||
"related": [], | ||
"name": "stop()", | ||
"description": "Stop the effect.", | ||
"syntax": [".stop()"], | ||
"returns": "void", | ||
"type": "method", | ||
"category": "Effects", | ||
"subcategory": "AllPass", | ||
"classanchor": "AllPass", | ||
"parameters": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
content/references/translations/en/sound/AudioSample_stop_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
{ | ||
"brief": "Set the bandwidth for the filter.", | ||
"brief": "Sets the bandwidth for the filter.", | ||
"related": [], | ||
"name": "bw()", | ||
"description": "Set the bandwidth for the filter.", | ||
"description": "Sets the bandwidth of this BandPass filter.", | ||
"syntax": [".bw(bw)"], | ||
"returns": "void", | ||
"type": "method", | ||
"category": "Effects", | ||
"subcategory": "BandPass", | ||
"classanchor": "BandPass", | ||
"parameters": [] | ||
"parameters": [ | ||
{ | ||
"name": "bw", | ||
"description": "the filter bandwidth in Hertz", | ||
"type": ["float"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
content/references/translations/en/sound/BandPass_res_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"brief": "Sets the resonance (or 'Q factor') of this filter.", | ||
"related": [], | ||
"name": "res()", | ||
"description": "Sets a fixed Q factor for this filter. If you want to specify a fixed \n bandwidth for this bandpass filter (in Hertz) that is maintained even as \n the center frequency of the filter changes, use <code>bw(float)</code> \n instead.", | ||
"syntax": [".res(q)"], | ||
"returns": "void", | ||
"type": "method", | ||
"category": "Effects", | ||
"subcategory": "BandPass", | ||
"classanchor": "BandPass", | ||
"parameters": [ | ||
{ | ||
"name": "q", | ||
"description": "the desired Q factor, a value between 0.1 and 10", | ||
"type": ["float"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.