Skip to content

Instantly share code, notes, and snippets.

@shiffman
Created September 22, 2016 19:53
Show Gist options
  • Save shiffman/e368d0f61f46bbfe9b2082238535bdab to your computer and use it in GitHub Desktop.
Save shiffman/e368d0f61f46bbfe9b2082238535bdab to your computer and use it in GitHub Desktop.
This is my ARC opus
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(220);
arc(200, 200, 100, 100, 0,135);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment