我遇到的问题是我想填充一个椭圆,但我使用浮点数作为我的“x”和“y”值。这是我所拥有的:
@Override
public void paintComponent(Graphics g)
{
.
.
.
for(Coordinates cord : tempVertices)
{
g.fillOval(cord.x,cord.y,DIAMETER,DIAMETER);
}
// DIAMETER = 10
// Coordinate Class is just a variable with an 'x' and 'y' value stored in floats
// Floats range from 0 to 1, so type casting won't work...
// tempVertices is just an ArrayList with Coordinates values
我正在使用 NetBeans IDE 7.2,但我不知道如何覆盖该fillOval
方法,并且我无法使用 import from : import org.newdawn.slick.*;
(它不会识别它)。有没有更好的Graphics
选择或更简单的方法来实现这个简单fillOval
?