//Zombie //Brian Witte float xGoober=100; float yGoober=100; void setup(){ size(600,400); background(255); ellipseMode(CENTER); rectMode(CENTER); } void draw(){ stroke(0); //Body fill(150); rect(xGoober,yGoober,100,100); //legs line(xGoober-30,yGoober+50,xGoober-30,yGoober+80); line(xGoober+30,yGoober+50,xGoober+30,yGoober+80); //mouth stroke(0); fill(0); rect(xGoober,yGoober+20,80,20); //tongue stroke(0); fill(255,0,0); rect(xGoober,yGoober+25,40,10); stroke(0); line(xGoober,yGoober+20,xGoober,yGoober+30); //eye stroke(0); fill(255); ellipse(xGoober,yGoober-20,30,20); stroke(0); fill(0); ellipse(xGoober,yGoober-20,10,10); //Name text("Goober!!!", xGoober-25, yGoober+45); }