Created
September 10, 2015 20:13
-
-
Save lmccart/fd29ab6934f36339d8f8 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 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