processing-docs
processing-docs copied to clipboard
Example in sound library SawOsc --> mistake in comments
mistake in comments line 8
import processing.sound.*; SawOsc saw;
void setup() { size(640, 360); background(255);
// Create square wave oscillator. saw = new SawOsc(this); saw.play(); }
void draw() { }
line 8: // Create square wave oscillator.
Proposed fix
// Create sawtooth wave oscillator.
ok got it may I work on this issue.