/// My Zoog /// void setup() { size(200,200); } void draw() { background(255); stroke(0); fill(250,215,130); /// color of head /// ellipseMode(CORNER); /// head /// stroke(0); ellipse(50,25,50,50); fill(0); smooth(); ellipseMode(CORNER); /// left eye /// ellipse(60,35, 10,20); fill(0); smooth(); ellipseMode(CORNER); /// right eye /// ellipse( 80,35, 10,20); fill(0,0,255); smooth(); rect(65,75,20,50); /// body /// stroke(0); line(65,125,50, 150); line(85,125,100,150); }