xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
let boxwidth = width / 10;
let boxheight = height / 10;
for (let i = 0; i < 10; i++) {
for (let a = 0; a < 10; a++) {
let x = i * boxwidth;
let y = a * boxheight;
if (mouseX > x && mouseX < x + boxwidth && mouseY > y && mouseY < y + boxheight) {
fill("red");
} else {
fill("white");
}
rect(x, y, boxwidth, boxheight);
}
}
}