【发布时间】:2023-04-03 03:51:01
【问题描述】:
所以我有一个 DrawStar 类,它使用 Polygon 来绘制星星:
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
int[] cX = new int[] {x, x+5, x+20, x+8, x+16, x, x-16, x-8, x-20, x-5, x};
int[] cY = new int[] {y, y+14, y+14, y+22, y+39, y+29, y+39, y+22, y+14, y+14, y};
Polygon pol = new Polygon(cX, cY, 11);
g2.setColor(this.color);
g2.draw(pol);
g2.fillPolygon(pol);
}
然后在我的主类中创建一个 JPanel 框架来绘制星星:
...
JFrame starsframe = new JFrame();
starsframe.setTitle("Random stars...");
starsframe.setSize(600, 400);
starsframe.setLocationRelativeTo(null);
starsframe.setVisible(true);
starsframe.setResizable(false);
starsframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
DrawStar star1 = new DrawStar(300, 200, CreateColor(color));
starsframe.add(star1);
DrawStar star2 = new DrawStar(400, 300, CreateColor(color));
starsframe.add(star2);
...
但是,它只适用于一颗星。如果我添加第二个(如上),则不会绘制任何内容(CreateColor 是我为星形颜色实现的函数)。我怎样才能将它们一直添加到框架上? 还有一件事,即使我将框架的背景颜色设置为黑色,在绘制星星后它也会变为灰色。
谢谢!
【问题讨论】: