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