processing-docs icon indicating copy to clipboard operation
processing-docs copied to clipboard

Example in sound library SawOsc --> mistake in comments

Open Rodak123 opened this issue 4 years ago • 1 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.

Rodak123 avatar Mar 25 '21 10:03 Rodak123

ok got it may I work on this issue.

SanjaySinghRajpoot avatar Mar 31 '21 17:03 SanjaySinghRajpoot