Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created September 10, 2015 20:13
Show Gist options
  • Save lmccart/fd29ab6934f36339d8f8 to your computer and use it in GitHub Desktop.
Save lmccart/fd29ab6934f36339d8f8 to your computer and use it in GitHub Desktop.
var y = 259;
function setup() {
createCanvas(600, 400);
angleMode(DEGREES);
}
function draw() {
background(255);
bezier(mouseX, 247, 102, 192, 244, 321, 247, y);
y = y + 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment