//Draw the front view of the skater
// on the snowScene at full size.
greenScreenDraw(front,snowScene,117,0);
//Draw the left side view of the skater
// on the snowScene at half size.
left = left.getPictureWithHeight(256/2);
greenScreenDraw(left,snowScene,55,64);
//Draw the right side view of the skater
// on the snowScene at one-third size.
right = right.getPictureWithHeight(256/3);
greenScreenDraw(right,snowScene,260,96);
//Display students name on the final
// output and display it.
snowScene.addMessage(
"Display your name here.",10,15);
snowScene.explore();
System.out.println(snowScene);
}//end run method
|