gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 08:15:51 24 4
gpt4 key购买 nike

我陷入了以下问题;我有一个矩形(50x40 px,位置:x1,y1)和一个圆形(半径30,位置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);

最佳答案

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

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

关于Java - 在两个具有静态尺寸的对象之间绘制箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10420460/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com