Skip to content

Instantly share code, notes, and snippets.

@claytical
Created February 1, 2016 16:07
Show Gist options
  • Save claytical/a22c57f56709f811bd01 to your computer and use it in GitHub Desktop.
Save claytical/a22c57f56709f811bd01 to your computer and use it in GitHub Desktop.
Simple If Statement
function setup() {
createCanvas(500,500);
}
function draw() {
background(255,255,255);
if (mouseX > 250) {
ellipse(50,50,50,50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment