xxxxxxxxxx
33
function setup() {
createCanvas(500, 500);
background(255, 246, 186)
strokeWeight(1);
stroke(252, 73, 181);
let x = 50;
let y = 50;
for(let i = 0; i < 300; i++){
fill(252, 199, 231);
ellipse(x,y, 25,25);
fill(255,246,186);
ellipse(x,y,10,10);
x = x + random(150);
if (x > 500) {
x = random(50)
}
y = y + random(150);
if (y > 500) {
y = random(50)
}
}
}
function draw() {
}