xxxxxxxxxx
27
function setup() {
createCanvas(400, 400);
}
function draw() {
//track
// print(mouseX+","+mouseY);
background('#E9D5DC');
strokeWeight(3);
stroke('rgb(19,18,18)');
for (let x = 0; x <= width; x += 20) {
for (let y = 0; y <= height; y += 50) {
fill ('rgb(194,170,170');
ellipse (x, y, 25, 50);
fill('rgb(39,50,77)');
rect(x,y,25,50);
fill(0);
circle(x,y,20);
}
}
}