Skip to content

Instantly share code, notes, and snippets.

@claytical
Created September 15, 2015 01:28
Show Gist options
  • Save claytical/c3137d757ec86541896a to your computer and use it in GitHub Desktop.
Save claytical/c3137d757ec86541896a to your computer and use it in GitHub Desktop.
Conditional Else If Example
function setup() {
createCanvas(windowWidth, windowHeight);
rectMode(CENTER);
background(255);
}
function draw() {
}
function keyPressed() {
if (key == 'A'){
ellipse(width/2,height/2, 40, 40);
}
else if(key == 'B') {
rect(width/2, height/2, 40, 40);
}
else {
line(0, height/2, width, height/2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment