Given two line segments determined by two pairs of point positions, returns the closest point on each segment to the other segment.
Line_1_Point returns the closest point on the first line segment to the second line segment.
Line_2_Point returns the closest point on the second line segment to the first line segment.
Line_1_Fraction returns the fraction of the distance of Line_1_Point along the first line segment, where 0 is the input Line 1 Point 1 and 1 is the input Line 1 Point 2.
Line_2_Fraction returns the fraction of the distance of Line_2_Point along the second line segment, 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
Except where otherwise noted, this work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License