Skip to content

Instantly share code, notes, and snippets.

@tboydar
Created October 11, 2013 02:40
Show Gist options
  • Save tboydar/6928807 to your computer and use it in GitHub Desktop.
Save tboydar/6928807 to your computer and use it in GitHub Desktop.
processing 畫圓
void setup() {
size(300, 300);
background(0);
}
void draw()
{
ellipse(200, 200, 50, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment