我有一个Unit对象的数组,单位对象有中心cx,cy和radius cr。我想只显示圆圈的轮廓(想想没有重叠位的静脉图)。我设法做到了,但它使它非常慢,因为它是一个嵌套的for循环。这是代码:
(这是循环所有单位的方法)
ArrayList<Integer> validangles = new ArrayList<Integer>();
public void getValidAngles(ArrayList<Unit> units) { //get all the angles that aren't overlapping
ArrayList<Integer> invalidAngles = new ArrayList<Integer>();
for (int i = 0; i < units.size(); i++) { //cycle through all other units
Unit c2 = units.get(i);
if (this != c2) { //make sure it is not the same unit
for (int ia = 0; ia < 360; ia += 10) { //cycle through the angles
double ca = Math.toRadians(ia);
Point p = new Point( //point on the circle
(int) Math.round((c2.getCx() + (cr * Math.cos(ca)))),
(int) Math.round((c2.getCy() + (cr * Math.sin(ca)))));
if (overlapping(p)) {
invalidAngles.add(ia-180); //this angle should not be shown
}
}
}
}
validangles.clear();
for (int i = 0; i < 360; i += 10) {
if (!invalidAngles.contains(i-180)) {
validangles.add(i-180);
}
}
}
public void drawValidAngles(Graphics g2) {
for(int i : validangles) {
int x = (int)Math.round(cx+cr*Math.cos(Math.toRadians(i)));
int y = (int)Math.round(cy+cr*Math.sin(Math.toRadians(i)));
g2.drawLine(x, y, x, y);
}
}
问题在于,如果我有超过几百个单位,这将是常见的,它会使程序减慢一吨,因为在另一个单位的环路中嵌入了一个单位的循环。
答案 0 :(得分:0)
您可以使用Area类来组合椭圆(每个椭圆代表单位形状)。 E.g。
Shape s=new Ellipse2D.Float(10,10,200,100);
Area a=new Area(new Ellipse2D.Float(150,20,100,200));
a.add(new Area(s));
然后您可以使用和面积作为轮廓。请参阅工作示例here