Graphics: drawOval(int x, int y, int width, int height) - does an analog exist, but only with non-integer coordinates?

    1 answer 1

    Taken from here .

     Ellipse2D.Double shape = new Ellipse2D.Double(0.5, 0.5, 50, 50); g.draw(shape);