Skip to content

Instantly share code, notes, and snippets.

@lmccart
Last active March 24, 2016 16:48
Show Gist options
  • Save lmccart/a99f16b4b57072ef7332 to your computer and use it in GitHub Desktop.
Save lmccart/a99f16b4b57072ef7332 to your computer and use it in GitHub Desktop.
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