Draws an oval.
(int x, int y, int width, int height)
| 1071 | * Draws an oval. |
| 1072 | */ |
| 1073 | @Override |
| 1074 | public void drawOval(int x, int y, int width, int height) { |
| 1075 | Shape shape = new Ellipse2D.Float(x, y, width, height); |
| 1076 | draw(shape); |
| 1077 | } |
| 1078 | |
| 1079 | /** |
| 1080 | * Fills an oval. |