Name

stop()

Class

SinOsc

Description

Stop the oscillator from playing back

Examples

  • import processing.sound.*;
    SinOsc sine;
    
    void setup() {
      size(640, 360);
      background(255);
        
      // Create the sine oscillator
      sine = new SinOsc(this);
      sine.play();
    }      
    
    void draw() {
    }
    
    void mousePressed() {
      sine.stop();
    }
    
    

Syntax

  • oscillator.stop()

Return

  • void