Skip to content

Instantly share code, notes, and snippets.

@jacopocolo
Last active January 5, 2016 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacopocolo/4f0dc9062a7668a4845a to your computer and use it in GitHub Desktop.
Save jacopocolo/4f0dc9062a7668a4845a to your computer and use it in GitHub Desktop.
setup() {
createCanvas(500,500) //let’s create a 500x500 pixels artboard to draw in
}
draw() {
line(0,0,100,100) //let’s draw a line that starts from 0,0 and ends in 100,100
line(100,100,0,0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment