Skip to content

Instantly share code, notes, and snippets.

@slambert
Created September 27, 2016 20:22
Show Gist options
  • Save slambert/e3552e953684c3d83149903d03dd3220 to your computer and use it in GitHub Desktop.
Save slambert/e3552e953684c3d83149903d03dd3220 to your computer and use it in GitHub Desktop.
My olde zoog
/* My Zoog
* Steve Lambert
* Some time in 2011
*/
void setup() {
size(480, 120);
smooth();
background(240);
// body and arms
fill(200); // make it grey
rect(210,60,50,30);
ellipse(205,70,10,10);
ellipse(265,70,10,10);
// legs
rect(220,90,10,10);
rect(240,90,10,10);
// head
rect(215,45,40,15);
// eyes
fill(255); // make the rest white
ellipse(225,50,5,5);
ellipse(245,50,5,5);
// mouth
rect(225,55,20,3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment