11031104110511061107110811091110
/** * @see Graphics#drawOval(int, int, int, int) */ public void drawOval(int x, int y, int width, int height) { Ellipse2D oval = new Ellipse2D.Float((float)x, (float)y, (float)width, (float)height); draw(oval); }
11111112111311141115111611171118
/** * @see Graphics#fillOval(int, int, int, int) */ public void fillOval(int x, int y, int width, int height) { Ellipse2D oval = new Ellipse2D.Float((float)x, (float)y, (float)width, (float)height); fill(oval); }