top of page

An elegant for loop, for homework

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)

}

}


7 views0 comments

Recent Posts

See All
bottom of page