xxxxxxxxxx
32
function setup() {
createCanvas(600, 400);
}
function draw() {
background(220);
// First rectangle
if (mouseX > 0 && mouseX < 200 && mouseY > 0 && mouseY < 400) {
fill('red');
} else {
fill(255);
}
rect(0, 0, 200, 400);
// Second rectangle
if (mouseX > 200 && mouseX < 400 && mouseY > 0 && mouseY < 400) {
fill('red');
} else {
fill(255);
}
rect(200, 0, 200, 400);
// Third rectangle
if (mouseX > 400 && mouseX < 600 && mouseY > 0 && mouseY < 400) {
fill('red');
} else {
fill(255);
}
rect(400, 0, 200, 400);
}