I have tried using the method drawOval with equal height and width but as the diameter increases the circle becomes worse looking. What can I do to have a decent looking circle no matter the size. How would I implement anti-aliasing in java or some other method.
|
|
|
|
|
|
|
As it turns out, Java2D (which I'm assuming is what you're using) is already pretty good at this! There's a decent tutorial here: http://www.javaworld.com/javaworld/jw-08-1998/jw-08-media.html The important line is:
|
||||
|
|
|
you can set rendering hints:
|
||
|
|
|
|
Two things that may help:
Example
See Josef's answer for an example of |
||
|
|
|
|
Of course you set your radius to what ever you need:
hole.x = 14; hole.y = 14; g2d.draw(hole); } |
|||
|
