Skip to content

Instantly share code, notes, and snippets.

@claytical
Created February 1, 2016 16:19
Show Gist options
  • Save claytical/ba84465aca4a07bb98a9 to your computer and use it in GitHub Desktop.
Save claytical/ba84465aca4a07bb98a9 to your computer and use it in GitHub Desktop.
If with Else
var c;
function setup() {
createCanvas(500,500);
c = color(255,255,255);
}
function draw() {
if (mouseY > height/2) {
c = color(255,0,0);
}
else {
c = color(0,255,255);
}
fill(c);
if (mouseX > width/2) {
ellipse(mouseX, mouseY, 10, 10);
}
else {
rect(mouseX, mouseY, 10, 10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment