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 Function Intersect( _ 
ByVal line As Line3d, _ 
ByRef res As Point3d
) As Boolean
This language is not supported or no code example is available.
public bool Intersect( 
Line3d line
out Point3d res 
)
This language is not supported or no code example is available.
public:  
bool Intersect( 
Line3d^ line
Point3d^& res 
)
This language is not supported or no code example is available.
public function Intersect( 
line : Line3d
res : Point3d 
) : boolean;
This language is not supported or no code example is available.

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