Class Reverb

java.lang.Object
processing.sound.Effect<processing.sound.JSynReverb>
processing.sound.Reverb

public class Reverb extends Effect<processing.sound.JSynReverb>
This is a simple reverb effect.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Reverb(PApplet parent)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Reverb

      public Reverb(PApplet parent)
      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 effect
      damp - A value controlling the damping factor of the reverb
      wet - 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