//Practice Project #1 //D.Holtberg 9/11/2011 void setup(){ //Intialize size(600,400); } void draw (){ scene(); hero(); } void scene(){ background(150,200,250); line (100,100,200,200); fill(255,0,0); stroke(0,255,0); strokeWeight(5); triangle(50,50,150,150,220,10); fill(255,0,255); noStroke(); rect(40,300,100,200); } void hero() { stroke(0); ellipse(mouseX,mouseY,100,200); }