Private
constructorStatic
CrossingTry to closest points between two lines. If there's no valid crossing, null is returned.
The intersection event, or null if there's no intersection.
first Line Line to intersect with.
second Line to intersect with.
If true, the distance is limited to the finite line segment. default: false
(default is Infinity) Distance between two lines to filter intersections. To include crossing lines, increase the distance
Static
LineTry to get an intersection point between this line and another line. If there's no intersection, null is returned.
The point at the intersetion, or null if there's no intersection.
first Line Line to intersect with.
second Line to intersect with.
If true, the distance is limited to the finite line segment. default: false
(default is global tolerance) Distance between two lines to filter intersections. To include crossing lines, increase the distance
Static
LineStatic
LineIntersects a line and a plane. This function only returns a single intersection point or null (i.e. if the line is coincident with the plane then no intersection is assumed).
The intersection point.
Static
PlaneStatic
PlaneGenerated using TypeDoc
Provides static methods for the computation of intersections, projections, sections and similar.