xxxxxxxxxx
23
let x=1
let grow=1
let offset=1
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (x = 0 ; x <=width ; x = x+50){
fill (200, 300-x)
grow=x+offset
print(grow)
if (x>=600){
x=0}
ellipse(width/2, height/2, x+offset, x+offset)
}
offset=offset+1
// print (x)
}