xxxxxxxxxx
31
function setup() {
createCanvas(300, 300);
}
// function draw() {
// if (mouseIsPressed ) {
// if (mouseY < height / 2){
// fill(0,0,255);
// rect(0,0, width, height / 2);
// } else {
// fill(255,0,0);
// rect(0,height / 2, width, height);
// }
// }
// }
function draw() {
if (mouseIsPressed === true && mouseY < height / 2){
fill(0,0,255);
rect(0,0, width, height / 2);
} if (mouseIsPressed === true && mouseY > height / 2){
fill(255,0,0);
rect(0,height / 2, width, height);
}
}