Java - 在具有静态尺寸的两个对象之间绘制箭头

时间:2012-05-02 19:36:17

标签: java graphics

我坚持跟随问题; 我有一个矩形(50x40 px让我们说,位置:x1,y1)和一个cirle(半径30,positin x2,y2)。现在我想在它们之间画一个箭头

 void drawArrow(Graphics g1, int x1, int y1, int x2, int y2,) {
//x1 and y1 are coordinates of circle or rectangle
//x2 and y2 are coordinates of circle or rectangle, to this point is directed the arrow 
Graphics2D g = (Graphics2D) g1.create();
double dx=x2-x1;
double dy=y2-y1;
double angle = Math.atan2(dy, dx);
int len = (int) Math.sqrt(dx*dx + dy*dy);
AffineTransform at = AffineTransform.getTranslateInstance(x1, y1);
at.concatenate(AffineTransform.getRotateInstance(angle));
g.transform(at);
g.drawLine(0,0,len,0);
g.fillPolygon(new int[] {len, len-ARR_SIZE, len-ARR_SIZE, len},
new int[] {0, -ARR_SIZE, ARR_SIZE, 0}, 4);
}

此代码显然只连接矩形和圆形的特定点(在此图片上我连接了中间点http://imageshack.us/photo/my-images/341/arrk.jpg/)。你知道如何实现这样的stg吗? (http://imageshack.us/photo/my-images/833/arr2u.jpg/)...我的想法是缩短长度并计算新坐标,但我有点挣扎。

//我用这种方式调用这个函数:

drawArrow(g,temp.x+radius/2,temp.y+radius/2,temp2.x+width/2,temp2.y+height/2);

1 个答案:

答案 0 :(得分:1)

最简单的方法是设置剪辑。如果将圆和矩形添加到剪裁中,则不会在其上绘制。

虽然没有解决问题或绘制箭头。要解决这个问题,你需要使用Shape.getBounds(),找出矩形的边界,然后计算圆的角度,并使用三角法在矩形上找到正确的点