Calculate the distance between two lines in 3D space

I just did some math work on the distance between two lines in 3D space. After some boring calculation, I found the result itself is much more decent and help us to revisit the issue in an elegant way.

Line 1: p = p1 + t * v1
Line 2: p = p2 + t * v2
(t is a scalar argument, while v1 and v2 are normalized vectors)

Before considering the special cases, we can consider the general case and usually the special cases can be analyzed from some items in the general result.

SO the general case is that the two lines are not coplanar. We can first construct a plane from these two lines by translating Line 2 to pass through p1 and calculating the distance from p2 to the constructed plane.

The normal vector of the plane is:

n = cross( v1, v2 )

Thus the plane is:

dot( n, p ) = dot( n, p1 )

The closest point in the plane to p2 is constrained by the above equation and the following one as well.

p = p2 + t * n

t in the above equation is therefore the distance we want to calculated.

By combining these two equations, we can get this one:

dot( n, p2 + t * n ) = dot( n, p1 )

i.e.

t = abs( dot( n, p1 - p2 ) ) = abs( dot( cross( v1, v2 ), p1 - p2 ) )

After this result comes out, I said to myself, "aah, how stupid I am..., I don't actually need to do so much calculation!"

It is actually a decent result if you consider this question in another way. You can pick any two points respectively from these two lines, let's say, p1 and p2 is OK. Then after projecting the vector p1 - p2 onto the normal n is the distance we want.

For the special cases, we can see from cross( v1, v2 ) that the equation is incorrect when the two lines are parallel. It will be easy to analyze it.

转载于:https://www.cnblogs.com/danod/archive/2012/08/16/DistanceBetweenLines.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值