Skip to content

Instantly share code, notes, and snippets.

@mzgoddard
Created June 29, 2014 08:37
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 mzgoddard/5faa8375776788a89ba3 to your computer and use it in GitHub Desktop.
Save mzgoddard/5faa8375776788a89ba3 to your computer and use it in GitHub Desktop.
A Pen by Michael "Z" Goddard.
color sky = #76d6ff;
color white = #ffffff;
void setup() {
size(512, 512);
noLoop();
}
void draw() {
background(white);
noStroke();
fill(sky);
ellipse(128, 128, 128, 128);
}
canvas
size 256px
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment