//Practice Project #1 //P.Eliacin 9/11/2013 void setup(){ //Initialize size(600,400); } void draw(){ //// Next frame//// scene(); hero(); } void scene() { ////Draw the scene. background( 150, 200, 250); size( 640, 480 ); background( 75, 125, 225 ); line( 100, 100, 100, 200); fill(255, 0, 0); stroke(0, 255, 0); strokeWeight( 6 ); triangle(50, 50, 150, 150, 200, 10 ); fill(255, 0, 255 ); rect(50, 400, 100, 200); } void hero () { stroke(0); ellipse(mouseX,mouseY, 100,200); }