Computes the intersection points between a given polyline and a line in 3D space.
Iterates through each segment of the polyline and checks for intersection with the specified line.
Returns an array of intersection points, each with its corresponding parameter t on the line,
sorted in ascending order of t.
Computes the intersection points between a given polyline and a line in 3D space. Iterates through each segment of the polyline and checks for intersection with the specified line. Returns an array of intersection points, each with its corresponding parameter
t
on the line, sorted in ascending order oft
.