xxxxxxxxxx
28
function setup() {
createCanvas(400,400);
}
function draw() {
background(220);
let w = width/10;
let h = height / 10;
for (let lc = 0; lc < 10; lc++) { // Loop column
for (let lr = 0; lr < 10; lr++) { // Loop rows
let x = lc * w; // x posistion
let y = lr * h; // y position
// Check if the mouse is over the current cell
if (mouseX > x && mouseX < x + w && mouseY > y && mouseY < y + h) {
fill("red");
} else {
fill("white");
}
rect(x, y, w, h);
}
}
}