Here are other Graphics methods you may need.
Each of the "draw" methods for a figure corresponds to a "fill" method,
which does the same thing except that it fills the figure with the
current color.
clearRect(int x, int y, int width, int height)
drawLine(int x1, int y1, int x2, int y2)
drawRect(int x, int y, int width, int height)
drawOval(int x, int y, int width, int height)
drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
drawString(String str, int x, int y)
setColor(Color c)
setFont(Font font)