Autodesk.AutoCAD.Geometry Namespace > Point3d Structure > Point3d Constructor > Point3d(PlanarEntity, Point2d) Constructor
Point3d.Point3d(PlanarEntity, Point2d) Constructor
Description

 

Constructs 3D point by the formula

 p + uAxis * point.x + vAxis * point.y,

where 3D point p and 3D vectors uAxis and vAxis form the coordinate system in planar entity plane and can found by function call plane.get(p, uAxis, vAxis).

Visual Basic
Public Sub New(
    plane As PlanarEntity, 
    point As Point2d
)
C#
public Point3d(
    PlanarEntity plane, 
    Point2d point
);
Parameters
Parameters 
Description 
PlanarEntity plane 
Input plane 
Point2d point 
Input 2D point 
Links
   Comments?