Reference+
Class Name
WhiteNoise
Description
This is a White Noise Generator. White Noise has a flat spectrum.
Examples
import processing.sound.*; WhiteNoise noise; void setup() { size(640, 360); background(255); // Create the noise generator noise = new WhiteNoise(this); noise.play(); } void draw() { }
Constructors
WhiteNoise(parent)
Parameters
parent
(PApplet)
typically use "this"
Methods
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.