I have read this forum post
**Location** of shortest distance between two skew lines in 3D?
multiple times but I'm stuck.
I have two lines defined resp. by
Point $P_1 (2,4,0)$ and vector $V_1 [2,-2,4]$
Point $P_2 (4,4,1)$ and vector $V_2 [-3,4,-2]$
Step 1) Define the normal vector to the two Vectors $V_3 = V_1 \times V_2 = [12,8,-2].$
Step 2) Define the Vector $V_4 = P_2-P_1 = [2,0,1].$
Step 3) Define the abs(Dot Product) : $|V_3.V_4| = 22.$
Step 4) Define the norm : $|[V_3]| = \sqrt{12^2+8^2+2^2} = 14.56$
Step 5) Divide abs(Dot Product ) / $|[V_3]|$
Conclusion : Minimum Distance = $ 22/14.56 = 1.51.$
This is correct but how do I get the location of the two points realizing this minimum distance using my example values step by step ?
Thanks in advance Marc