xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
frameRate(1);
let x = 50;
let y = 50;
let c = 20
for (let i = 0; i < 5;i++) {
fill(c , c + 50, 100)
ellipse(x,y,50,50);
x= x + 75;
y = y + 75;
c = c + random(200);
}
}