Computes the intersection points between a given line and the edges of a triangle.
For each edge of the triangle, checks if the line intersects it, and collects all intersection points.
The resulting intersection points are sorted along the line according to their parameter t.
Computes the intersection points between a given line and the edges of a triangle.
For each edge of the triangle, checks if the line intersects it, and collects all intersection points. The resulting intersection points are sorted along the line according to their parameter
t
.