Reference+
Name
damp()
Class
Reverb
Description
Changes the damping factor of the reverb effect.
Examples
import processing.sound.*; AudioIn in; Reverb reverb; void setup() { size(640,360); background(255); // create the input stream in = new AudioIn(this, 0); // create a reverb effect reverb = new Reverb(this); // start the input stream in.play(); // Patch the reverb reverb.process(in); reverb.damp(0.5); } void draw() { }
Syntax
reverb.damp(damp)
Parameters
damp
(float)
A float value controlling the damping factor of the reverb
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.