想要创造大卫的明星:
我如何在java中解决这个问题? 对此非常困惑。
答案 0 :(得分:2)
这就是你需要的:
int[] xPoints = {100, 150, 200};
int[] yPoints = {100, 200, 100};
int[] yPoints2 = {175, 75, 175};
g.drawPolygon (xPoints, yPoints, 3);
g.drawPolygon (xPoints, yPoints2, 3);
答案 1 :(得分:1)
Graphics
或Graphics2D
类来绘制它。 试错法是可行的方法:)