Carlos Ureña / Varios

Line-to-line distance computation

In this page I show how to easily compute the minimal distance between two arbitrary lines.

Assume we have two lines, each represented by a point and a normalized direction vector (first line is (o1,v1) and second (o2,v2)). For simplicity, we will use these definitions: a1=sv1      b=v1v2      s=o1o2a2=sv2      c=ss      

A pair of points (one on each line) can be obtained by using two real values t1 and t2, by substituion on the parametric equations of the lines. These points are, obviously: p1(t1)  =  o1+t1v1              p2(t2)  =  o2+t2v2 The squared distance function dsq(t1,t2) is defined as: dsq(t1,t2)  =  (p1(t1)p2(t2))(p1(t1)p2(t2))

Non parallel lines

When the two lines are not parallel, then b is not 1. Note that v1 and v2 are normalized, thus in the case of non-parallel lines, these two vectors are not collinear and their inner prodcut (b) cannot be 1 (it is a value between 1 and 1).

It can be easily shown (by equating its derivate to cero) that, in this case, function dsq has its (unique) minimun value for t1=s1 and t2=s2, where: (1)s1  =  a2ba11b2          s2  =  a2ba11b2

The squared minimun distance (msq) between these two lines can be obtained by computing the pair of closest points (p1(s1) and p2(s2)) and then the computing the squared distance between then, that is: msq  =  dsq(s1,s2) by expanding d, this distance can also be written directly in terms of s1 and s2, as follows: msq  =  s12+s22+2(a1s1a2s2bs1s2) by substituting s1 and s2 above and then simplifying, we arrive to this expression: msq  =  a12+a222ba1a2b21+c

Parallel lines

In the case b=1 then the two lines are parallel (v1=v2). The squared distance can be computed simply as the squared length of the s component perpendicular to the lines. To obtain this value, we observe the component of s parallel to the lines (s||), and the component perpendicular to those lines (s). These vectors can be expressed as: s|| = (sv1)v1               s = ss|| If we consider the triangle formed by s, s|| and s, and by using Pythagoras theorem, we get this equality for the squared lengths: ss  =  (s||s||)+(ss) in this expression, we can do these substitutions: ss= msqs||s||= (sv1)2(v1v1)  =  (sv1)2  =  a12ss= c Thus we can finally get an expression for msq: msq  =  ca12

See also:

(this page uses MathJax)
URI: https://www.ugr.es/~curena/varios/llmsd/
Actualizado: 09/11/2023 10:37:00.