Created
September 7, 2015 16:06
-
-
Save claytical/b302d2f84b47e2c3c818 to your computer and use it in GitHub Desktop.
shape example
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
function setup() { | |
// uncomment this line to make the canvas the full size of the window | |
createCanvas(windowWidth, windowHeight); | |
} | |
function draw() { | |
// draw stuff here | |
line(0,0, 500, 500); | |
quad(10, 10, 100, 50, 110, 200, 15, 240); | |
ellipse(50, 50, 10, 10); | |
rect(300, 300, 50, 60); | |
triangle(5, 300, 20, 250, 60, 310); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment