PlaneEquation.Create Method

Creates a plane equation from a 3D point and 3D normal vector. It sets (X,Y,Z) to a unitized N, then sets D = -(X*P.X + y*P.Y + Z*P.Z).
Public Function Create( _ 
ByVal P As Point3D, _ 
ByVal N As Vector3D
) As Boolean
This language is not supported or no code example is available.
public bool Create( 
Point3D P
Vector3D N 
)
This language is not supported or no code example is available.

Parameters

P
Point3D

3D point on the plane

N
Vector3D

3D vector perpendicular to the plane

Return Value

bool

True if the operation succeeded, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition