Sep 29, 2021An elegant for loop, for homeworkSee the sketch here function setup() { createCanvas(400, 400);}function draw() { for (let i=0; i<6; i++){ noFill(); strokeWeight(i*2); ellipse(width/2, height/2,i*40+10) }}
See the sketch here function setup() { createCanvas(400, 400);}function draw() { for (let i=0; i<6; i++){ noFill(); strokeWeight(i*2); ellipse(width/2, height/2,i*40+10) }}