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