// Cloned by Dom on 2 Nov 2019 from World "Tutorial 3.3" by "Coding Train" project
// Please leave this clone trail here.
/*
https://vimeo.com/channels/learningp5js/138935678
*/
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0);
stroke(255);
strokeWeight(4);
noFill();
if ((mouseX > 300 && mouseX < 400) && (mouseY > 200 && mouseY < 300)) {
fill(255, 0, 200);
}
rect(300, 200, 100, 100);
}