Class Name

TriOsc

Description

This is a simple triangle wave oscillator.

Examples

  • import processing.sound.*;
    TriOsc triangle;
    
    void setup() {
      size(640, 360);
      background(255);
        
      // Create triangle wave oscillator.
      triangle = new TriOsc(this);
      triangle.play();
    }
    
    void draw() {
    	//the image is just for informative purposes
    	//on how the soundwave looks
    }
    
    Image output for example 1

Constructors

  • TriOsc(parent)

Parameters

  • parenttypically use "this"

Methods

  • amp()Change the amplitude/volume of this sound.
  • freq()Sets the frequency of the oscillator.
  • pan()Move the sound in a stereo panorama.
  • play()Starts the oscillator
  • set()Set multiple parameters at once
  • stop()Stop the oscillator from playing back