Given two infinite lines determined by two pairs of point positions, returns the closest point on each line to the other line.
Line_1_Point returns the closest point on the first line to the second line.
Line_2_Point returns the closest point on the second line to the first line.
Line_1_Fraction returns the parameterized position of Line_1_Point along the first line, where 0 is the input Line 1 Point 1 and -1 is the input Line 1 Point 2.
Line_2_Fraction returns the parameterized position of Line_2_Point along the second line, where 0 is the input Line 2 Point 1 and -1 is the input Line 2 Point 2.
Distance returns the distance between Line_1_Point and Line_2_Point, that is, the minimum distance between the segments.
Output Ports: Line_1_Point, Line_2_Point, Line_1_Fraction, Line_2_Fraction, Distance