gpt4 book ai didi

java - 如何覆盖 Java 中的 fillOval 函数?

转载 作者:行者123 更新时间:2023-11-30 07:21:57 25 4
gpt4 key购买 nike

<分区>

我遇到的问题是我想填充一个椭圆,但我使用 float 作为我的“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 org.newdawn.slick.*;(它不会识别它)。是否有更好的 Graphics 选项或更简单的方法来实现这个简单的 fillOval

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com