Graphics: drawOval(int x, int y, int width, int height) - does an analog exist, but only with non-integer coordinates?
1 answer
Taken from here .
Ellipse2D.Double shape = new Ellipse2D.Double(0.5, 0.5, 50, 50); g.draw(shape); |
Source: https://ru.stackoverflow.com/questions/678334/
All Articles