Skip to content

Instantly share code, notes, and snippets.

@claytical
Last active February 1, 2016 16:27
Show Gist options
  • Save claytical/3c8fe231421e05193da7 to your computer and use it in GitHub Desktop.
Save claytical/3c8fe231421e05193da7 to your computer and use it in GitHub Desktop.
Conditional Statement, And/Or
function setup() {
createCanvas(windowWidth, windowHeight);
y = 0;
}
function draw() {
background(0);
var oneThird = width/3;
var twoThirds = width - width/3;
if (mouseY < 100 || mouseY > height - 100) {
fill(255,0,0);
}
else {
fill(0,0,255);
}
if (mouseX > oneThird && mouseX < twoThirds) {
rect(oneThird, 0, oneThird, height);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment