The run method, called in Listing 1, is shown in Listing 3.
Listing 3. The run method.
public void run(){
Picture pic = new Picture("Prob01.jpg");
//Add your name and display the picture.
pic.addMessage("Display your name here.",10,20);
pic.explore();
pic = pic.scale(0.95,0.9);
pic = rotatePicture(pic,30);
pic.explore();
System.out.println(pic);
}//end run
|
| File: al.htm | [Next] | [Prev] |