Package processing.sound
Class Reverb
java.lang.Object
processing.sound.Effect<processing.sound.JSynReverb>
processing.sound.Reverb
This is a simple reverb effect.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
damp
(float damp) Changes the damping factor of the reverb effect.void
room
(float room) Change the room size of the reverb effect.void
set
(float room, float damp, float wet) Set multiple parameters of the reverb.void
wet
(float wet) Change the wet/dry ratio of the reverb.Methods inherited from class processing.sound.Effect
isProcessing, process, stop
-
Constructor Details
-
Reverb
- Parameters:
parent
- PApplet: typically use "this"
-
-
Method Details
-
damp
public void damp(float damp) Changes the damping factor of the reverb effect.- Parameters:
damp
- A float value controlling the damping factor of the reverb
-
room
public void room(float room) Change the room size of the reverb effect.- Parameters:
room
- A float value controlling the room size of the effect.
-
set
public void set(float room, float damp, float wet) Set multiple parameters of the reverb. Parameters have to be in the right order.- Parameters:
room
- A value controlling the room size of the effectdamp
- A value controlling the damping factor of the reverbwet
- A value controlling the wet/dry ratio of the reverb.
-
wet
public void wet(float wet) Change the wet/dry ratio of the reverb.- Parameters:
wet
- A float value controlling the wet/dry ratio of the reverb. TODO document
-