PPT Slide
J.70
public void run() {
setBackground(Color.white);
while (true) {
/* run from one side of the screen to the middle */
dogrun(0, this.size().width / 2);
/* stop and pause */
currentimg = dogpics[2];
repaint();
pause(1000);
/* yawn */
currentimg = dogpics[3];
repaint();
pause(1000);
/* go back to plain old stop */
currentimg = dogpics[2];
repaint();
pause(1000);
/* wake up and run off */
dogrun(xpos, this.size().width + 10); } }
Previous slide
Next slide
Back to first slide
View graphic version