一个点在另外两个点之间的坐标,并知道起点和目标点的距离
Coordinates of a point between two other points and know the distance from starting point and target point
如何找到 H.If 的坐标 A,H,C 三点共线。如果已知两端的两个点,如 A(1.3,2.6) , C(8.1,13.7) 和 AH 的距离为 3.170958 。那么我怎样才能找到 H 的坐标呢?这里A为起点,C为终点
求出 AC 的长度并将公式应用于 x 和 y 坐标
H = A + (C-A)* Len(AH) / Len(AC)
是linear interpolation。几何学-相似三角形法则。斜边比(长度)等于直角比(坐标)
如何找到 H.If 的坐标 A,H,C 三点共线。如果已知两端的两个点,如 A(1.3,2.6) , C(8.1,13.7) 和 AH 的距离为 3.170958 。那么我怎样才能找到 H 的坐标呢?这里A为起点,C为终点
求出 AC 的长度并将公式应用于 x 和 y 坐标
H = A + (C-A)* Len(AH) / Len(AC)
是linear interpolation。几何学-相似三角形法则。斜边比(长度)等于直角比(坐标)