Plane(Point3D, Point3D, Point3D) Constructor

Three non-collinear 3D points constructor.
Public Sub New( _ 
ByVal P As Point3D, _ 
ByVal Q As Point3D, _ 
ByVal R As Point3D
)
This language is not supported or no code example is available.
public Plane( 
Point3D P
Point3D Q
Point3D R 
)
This language is not supported or no code example is available.

Parameters

P
Point3D

First point (Origin)

Q
Point3D

Second point (X axis)

R
Point3D

Third point

Remarks
 
The Z axis is given by the normalized cross product of PQ and PR, and then the Y axis is obtained by the cross product of Z axis and X axis. So Y axis may not be aligned with PR.

.NET Framework

Supported in: 4.8

In this article

Definition