Write an Applet that draws something interesting
on the screen, using several of the following methods of the Graphics
class:
- drawLine()
- clearRect()
- drawArc()
- drawOval()
- drawPolygon()
- drawPolyline()
- drawRect()
- drawRoundRect()
- drawString()
- drawString()
- fillArc()
- fillOval()
- fillPolygon()
- fillRect()
- fillRoundRect()
- setColor()
- setFont()
- repaint()
Incorporate some kind of "memory", so that the picture on the screen is
different each time the screen is redrawn.
You can look up these methods at the
on-line documentation for the Graphics class.