Plane3d.Intersect Method

Returns a parameter where the plane intersects a line. This parameter is 0.0-1.0 if the plane is between the points. If the intersection is out of this range a value smaller than 0.0 or larger than 1.0 is gotten.
public bool Intersect( 
   Line3d line
   out Point3d res 
)

Parameters

line
Line3d

The line to intersect this plane with.

res
Point3d

Set to the point of intersection between this plane.

Return Value

bool

true if the line intersects this plane, otherwise false (which means the line is parallel with this plane).

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition