如何创建一个头部与其末端相距一定距离的线--java / awt

问题描述 投票:1回答:1

我有分

A(x1,y1)

B(x2,y2)

我需要绘制这条线的箭头,但不是最后。它必须距离末端有一段距离。这件事会怎样做?

我有:

    ---------------------->

我需要:

    ----------------->-----

见图:

这是角度:

结果:

谢谢你们的帮助。这是另一个。

让我们创建主要功能并画一条线和箭头:

   private void drawLineWithArrowHead(Point from, Point to, Graphics2D graphics){
       Polygon arrowHead = new Polygon();
       arrowHead.addPoint( 0,6);
       arrowHead.addPoint( -6, -6);
       arrowHead.addPoint( 6,-6);int y1,y2,x1,x2;
       x1=from.getPosX();
       y1=from.getPosY();
       x2=to.getPosX();
       y2=to.getPosY();
       Line2D.Double line = new Line2D.Double(x1,y1,x2,y2);
       graphics.draw(line);

让我们加载旧的仿射变换并从行获取新的:

   AffineTransform tx, old_tx = graphics.getTransform();
   tx = calcAffineTransformation(line);

一些数学:

   double dx = (x2-x1), dy = (y2-y1);
   double len = Math.sqrt(dx*dx + dy*dy);
   double udx = dx/len, udy = dy/len;
   double cordx = x2  - (size-5) * udx, cordy = y2  - (size-5) * udy;
   double r_cordx = x2  - (size+3) * udx, r_cordy = y2  - (size+3) * udy;

现在放置箭头:

   tx.setToIdentity(); // null transform to origin
   double angle = Math.atan2(line.y2 - line.y1, line.x2 - line.x1);
   !! important !! must firstly translate secondly rotate
   tx.translate( cordx,  cordy ); // setup of cord of arrowhead
   tx.rotate((angle - Math.PI / 2d)); // head rotate
   graphics.setTransform(tx); // set transform for graphics
   graphics.fill(arrowHead);
   graphics.setTransform(old_tx); // get original transform back

CalcAffineTransformation函数获取行位置并旋转:

   private AffineTransform calcAffineTransformation(Line2D.Double line) {
       AffineTransform transformation = new AffineTransform();
       transformation.setToIdentity();
       double angle = Math.atan2(line.y2 - line.y1, line.x2 - line.x1);
       transformation.translate(line.x2, line.y2);
       transformation.rotate((angle - Math.PI / 2d));
       return transformation;
   }

就这样。这就是代码所做的:

java geometry awt line java-2d
1个回答
2
投票

你的线有方向向量

 dx, dy = (x2 - x1), (y2 - y1)

它的长度是

 len = sqrt(dx*dx + dy*dy)

单位方向向量是

udx, udy = dx/len, dy/len

指向距离末端的距离D(这是箭头的头部,据我所知):

x3, y3 = x2 - D * udx, y2 - D * udy

你需要别的东西来构建箭头吗?

© www.soinside.com 2019 - 2024. All rights reserved.