intersectionPlaneLine

intersectionPlaneLine()
intersectionPlaneLine(lineBegin: Point3, lineEnd: Point3, planePoint1: Point3, planePoint2: Point3, planePoint3: Point3, out_intersectionPoint: Point3): boolean

Computes the intersection of a line segment and a plane.

Parameters

lineBegin: Point3

The start point of the line segment to intersect.

lineEnd: Point3

The end point of the line segment to intersect.

planePoint1: Point3

A point on the plane to intersect.

planePoint2: Point3

A point on the plane to intersect.

planePoint3: Point3

A point on the plane to intersect.

out_intersectionPoint: Point3

The out parameter for the point of intersection if one exists.

Returns: boolean

True if the line segment and plane intersect. False otherwise.

See also: [[intersectionPlaneLine2]].