Untitled
void renderWave1() { noStroke(); fill(255); // A simple way to draw the wave with an ellipse at each location for (int x = 0; x < yvalues1.length; x++) { ellipse(x*xspacing1, height/2+yvalues1[x], 16, 16); }
void renderWave1() { noStroke(); fill(255); // A simple way to draw the wave with an ellipse at each location for (int x = 0; x < yvalues1.length; x++) { ellipse(x*xspacing1, height/2+yvalues1[x], 16, 16); }