Autodesk.AutoCAD.Geometry Namespace > Plane Class > Plane Constructor > Plane(Point3d, Vector3d, Vector3d) Constructor
Plane.Plane(Point3d, Vector3d, Vector3d) Constructor
Description

 

Constructs the plane with origin=or, uAxis=v1, and vAxis=v2

Contract: Vectors v1=pntU-or and v2=pntV-or are non-collinear.

Visual Basic
Public Sub New(
    origin As Point3d, 
    u As Vector3d, 
    v As Vector3d
)
C#
public Plane(
    Point3d origin, 
    Vector3d u, 
    Vector3d v
);
Parameters
Parameters 
Description 
Point3d origin 
Input origin 
Vector3d u 
Input point U on U axis 
Vector3d v 
Input point V on V axis 
Links
   Comments?