Skip to content

Instantly share code, notes, and snippets.

@claytical
Created September 7, 2015 16:06
Show Gist options
  • Save claytical/b302d2f84b47e2c3c818 to your computer and use it in GitHub Desktop.
Save claytical/b302d2f84b47e2c3c818 to your computer and use it in GitHub Desktop.
shape example
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