Computes the intersection points between a 2D polyline and a 2D line.
Iterates through each segment of the polyline, checks for intersection with the given line,
and collects intersection points along with their parameter t on the line.
The result is sorted by the parameter t in ascending order.
Computes the intersection points between a 2D polyline and a 2D line.
Iterates through each segment of the polyline, checks for intersection with the given line, and collects intersection points along with their parameter
t
on the line. The result is sorted by the parametert
in ascending order.