Last active
March 24, 2016 16:48
-
-
Save lmccart/a99f16b4b57072ef7332 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = 30; | |
var y = 30; | |
function setup() { | |
createCanvas(400, 600); | |
background(0); | |
} | |
function mousePressed() { | |
ellipse(x, y, 20, 20); | |
x = x + 30; | |
if (x > width) { | |
x = 30; | |
y = y + 30; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment