Skip to content

Commit d281ec1

Browse files
committed
Files generated by processingrefBuild.sh with Kevin's processing-doclet pr5 and pr6 both merged
1 parent f527d17 commit d281ec1

File tree

140 files changed

+220
-169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+220
-169
lines changed

content/references/translations/en/sound/AllPass_gain_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "gain()",
55
"description": "Sets the gain for the filter in the range 0.0 - 1.0, where larger values \n increase phase displacement.",
6-
"syntax": [".gain(g)"],
6+
"syntax": ["allpass.gain(g)"],
77
"returns": "void",
88
"type": "method",
99
"category": "Effects",

content/references/translations/en/sound/AllPass_process_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "process()",
55
"description": "Start the effect.",
6-
"syntax": [".process(input)"],
6+
"syntax": ["effect.process(input)"],
77
"returns": "void",
88
"type": "method",
99
"category": "Effects",

content/references/translations/en/sound/AllPass_stop_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "stop()",
55
"description": "Stop the effect.",
6-
"syntax": [".stop()"],
6+
"syntax": ["effect.stop()"],
77
"returns": "void",
88
"type": "method",
99
"category": "Effects",

content/references/translations/en/sound/Amplitude_analyze_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "analyze()",
55
"description": "Queries a value from the analyzer and returns a float between 0. and 1.",
6-
"syntax": [".analyze()"],
6+
"syntax": ["amplitude.analyze()"],
77
"returns": "float",
88
"type": "method",
99
"category": "Analysis",

content/references/translations/en/sound/Amplitude_input_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "input()",
55
"description": "Define the audio input for the analyzer.",
6-
"syntax": [".input(input)"],
6+
"syntax": ["amplitude.input(input)"],
77
"returns": "void",
88
"type": "method",
99
"category": "Analysis",

content/references/translations/en/sound/AudioIn_amp_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "amp()",
55
"description": "Change the amplitude/volume of this sound.",
6-
"syntax": [".amp(amp)"],
6+
"syntax": ["soundobject.amp(amp)"],
77
"returns": "void",
88
"type": "method",
99
"category": "I/O",

content/references/translations/en/sound/AudioIn_pan_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "pan()",
55
"description": "Move the sound in a stereo panorama.",
6-
"syntax": [".pan(pos)"],
6+
"syntax": ["soundobject.pan(pos)"],
77
"returns": "void",
88
"type": "method",
99
"category": "I/O",

content/references/translations/en/sound/AudioIn_play_.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"name": "play()",
55
"description": "Start capturing the input stream and route it to the audio output",
66
"syntax": [
7-
".play()",
8-
".play(amp)",
9-
".play(amp, add)",
10-
".play(amp, add, pos)"
7+
"audioin.play()",
8+
"audioin.play(amp)",
9+
"audioin.play(amp, add)",
10+
"audioin.play(amp, add, pos)"
1111
],
1212
"returns": "void",
1313
"type": "method",

content/references/translations/en/sound/AudioIn_set_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"related": [],
44
"name": "set()",
55
"description": "Set amplitude and pan position with one method.",
6-
"syntax": [".set(amp, pos)", ".set(amp, add, pos)"],
6+
"syntax": ["audioin.set(amp, pos)", "audioin.set(amp, add, pos)"],
77
"returns": "void",
88
"type": "method",
99
"category": "I/O",

content/references/translations/en/sound/AudioIn_start_.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"name": "start()",
55
"description": "Start the input stream without routing it to the audio output. This is useful\n if you only want to perform audio analysis based on the microphone input.",
66
"syntax": [
7-
".start()",
8-
".start(amp)",
9-
".start(amp, add)",
10-
".start(amp, add, pos)"
7+
"audioin.start()",
8+
"audioin.start(amp)",
9+
"audioin.start(amp, add)",
10+
"audioin.start(amp, add, pos)"
1111
],
1212
"returns": "void",
1313
"type": "method",

0 commit comments

Comments
 (0)