Utility.LinePlaneIntersection Method

Intersects the infinite line with a plane.
Public Shared Function LinePlaneIntersection( _ 
ByVal p0 As Point3D, _ 
ByVal p1 As Point3D, _ 
ByVal pe As PlaneEquation, _ 
ByRef intPoint As Point3D
) As Boolean
This language is not supported or no code example is available.
public static bool LinePlaneIntersection( 
Point3D p0
Point3D p1
PlaneEquation pe
out Point3D intPoint 
)
This language is not supported or no code example is available.

Parameters

p0
Point3D

First point of the line

p1
Point3D

Second point of the line

pe
PlaneEquation

The plane equation

intPoint
Point3D

The intersection point (if exists)

Return Value

bool

True if the intersection was found, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition