PPT Slide
J.63
/* The paint method specifies what to draw
on the screen */
public void paint(Graphics g) {
/* Draw board squares */
g.setColor(Color.yellow);
g.fillRect(0,0,100,100);
g.setColor(Color.black);
g.fillRect(100,0,100,100);
/* Draw checker */
g.setColor(Color.red);
g.fillOval(xpos,5,90,90);
}
}
Previous slide
Next slide
Back to first slide
View graphic version