//Jose M. Pena //Game int x,y; //background void setup() { size(800,600); x=10; y=15; } void draw() { background(127,127,255); fill(127,255,127); rect(0,height/1.1,width,height); //sun fill(255,255,100); ellipseMode(CENTER); ellipse(750,50,100,100); //body fill(255,0,0); rectMode(CORNER); rect(123,150, x+35,y+50); //head fill(0,255,0); ellipseMode(CORNER); ellipse(95+5,85-20,x+80,y+70); //eye fill(100,100,100); ellipseMode(CORNER); ellipse(170,95,10,20); //pants fill(255,255,100); rectMode(CORNER); rect(123,215,x+35,y+50); //arm fill(0,255,0); rectMode(CORNER); rect(133,170,x+15,y+40); }