xxxxxxxxxx
31
function setup() {
createCanvas(800, 400);
background(220);
let a = 0;
let wave = 0;
let space = 1;
let inc = TWO_PI / 180;
for (let y = 0; y < height; y+=space) {
push();
translate(width/2, y);
beginShape();
for (let i = 0; i < 200; i++) {
noFill();
let r = 100;
let x = r * cos(a);
let y = r * sin(a);
vertex(x * i, y * i);
a = a + inc;
}
endShape();
wave += 1;
pop();
}
}
function draw() {}