我在使用java的swing和awt库(第一次使用它们)时遇到了一些麻烦,无法正常工作。基本上,我想制作一个随机生成的三角形,然后在JPanel上显示它。我已经研究了一段时间,但我似乎无法让三角形出现。
我有一个类似的RandomTriangle类:
import java.util.*;
import java.math.*;
public class RandomTriangle {
private Random rand = new Random();
private int x1, y1, // Coordinates
x2, y2,
x3, y3;
private double a, b, c; // Sides
public RandomTriangle(int limit) {
do { // make sure that no points are on the same line
x1 = rand.nextInt(limit);
y1 = rand.nextInt(limit);
x2 = rand.nextInt(limit);
y2 = rand.nextInt(limit);
x3 = rand.nextInt(limit);
y3 = rand.nextInt(limit);
} while (!((x2 - x1) * (y3 - y1) == (y2 - y1) * (x3 - x1)));
a = Math.sqrt(Math.pow((x2 - x1), 2) + Math.pow((y2 - y1), 2));
b = Math.sqrt(Math.pow((x3 - x2), 2) + Math.pow((y3 - y2), 2));
c = Math.sqrt(Math.pow((x1 - x3), 2) + Math.pow((y1 - y3), 2));
}
public int[] getXCoordinates() {
int[] coordinates = {this.x1, this.x2, this.x3};
return coordinates;
}
public int[] getYCoordinates() {
int[] coordinates = {this.y1, this.y2, this.y3};
return coordinates;
}
}
然后我有一个扩展JPanel的SimpleTriangles类:
import javax.swing.*;
import java.awt.*;
public class SimpleTriangles extends JPanel {
public SimpleTriangles() {
JFrame frame = new JFrame("Draw triangle in JPanel");
frame.add(this);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,400);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public void paint(Graphics g) {
super.paint( g );
RandomTriangle myTriangle = new RandomTriangle(150);
int[] x = myTriangle.getXCoordinates();
int[] y = myTriangle.getYCoordinates();
g.setColor(new Color(255,192,0));
g.fillPolygon(x, y, 3);
}
public static void main(String[] args) {
RandomTriangle myTriangle = new RandomTriangle(300);
for (int x : myTriangle.getXCoordinates())
System.out.println(x);
for (int y : myTriangle.getYCoordinates())
System.out.println(y);
SimpleTriangles st = new SimpleTriangles();
}
}
我有什么可怕的错误吗?就像我说的,这是我第一次在Java中乱用GUI,所以我可能会非常富裕。当我运行这个时,我得到一个灰色的空白JPanel。但是,如果我明确指定了坐标,例如int[]x={0,150,300};
等,我会得到一个三角形。
谢谢!
答案 0 :(得分:4)
确保没有点在同一条线上的公式不能确保2个点位于同一条线上。通常情况下,至少有2个共线点。您可以使用以下方法来避免这种情况:
...
} while (((x2 - x1) * (y3 - y1) == (y2 - y1) * (x3 - x1)));
答案 1 :(得分:4)