我知道线段上的起点和终点。对于此示例,假设线段的距离为5.现在我想知道距终点距离为3的点。知道怎么用数学做这个吗?
起点(0,0) 终点(0,5)
点我想找(0,2)
答案 0 :(得分:27)
如果您的积分为(x1, y1)
和(x2, y2)
,并且您希望找到距离第2点(x3, y3)
单位n
的点d = sqrt((x2-x1)^2 + (y2 - y1)^2) #distance
r = n / d #segment ratio
x3 = r * x2 + (1 - r) * x1 #find point that divides the segment
y3 = r * y2 + (1 - r) * y1 #into the ratio (1-r):r
:
{{1}}