Reference+
Name
pan()
Class
SawOsc
Description
Move the sound in a stereo panorama.
Examples
import processing.sound.*; SawOsc saw; void setup() { size(640, 360); background(255); // Create square wave oscillator. saw = new SawOsc(this); saw.play(); } void draw() { // Map mouseX from -1.0 to 1.0 for left to right saw.pan(map(mouseX, 0, width, -1.0, 1.0)); }
Syntax
soundobject.pan(pos)
Parameters
pos
(float)
The panoramic position of this sound unit as a float from -1.0 (left) to 1.0 (right).
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.