/// project 2 // Draw a Human, airplane, dog float humanX, humanY; // Position oh human //float airplaneX, airplaneY; //float dogX, dogY; void setup() { //// Initialization //// size( 640, 480 ); } void draw() { scene(); action(); } void action(){ /// move and draw my creation // human(); // airplane(); // dog(); } void human(){ //creating a human and make him/her move // fill( 200, 200, 200 ); rectMode( CENTER ); rect( humanX, humanY, 200, 200); fill( 150, 255, 150 ); } void scene() { background(10,100, 190, 100); fill(100, 255, 100); rect(300, 300, 600, 200); }