xxxxxxxxxx
20
let y = 0
let x = 700
function setup() {
createCanvas(700, 700);
background(30);
stroke(30);
strokeWeight(20);
}
function draw() {
fill(y, y / 2, y / 2, 100);
y = y + 20
x = x - 20
ellipse(x, y, x / 1.5, x / 1.5);
if (y > 500) {
noLoop()
}
}