Share

Vector3d.Vector3d(PlanarEntity, Vector2d) Constructor

Description

Constructs a 3D vector by the formula

uAxis * vector2d.x + vAxis * vector2d.y

where 3D point p and 3D vectors uAxis and vAxis form a 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, 
    vector2d As Vector2d
)

C#

public Vector3d(
    PlanarEntity plane, 
    Vector2d vector2d
);

Parameters

Parameters Description
PlanarEntity plane Input plane
Vector2d vector2d Input vector

Links

Vector3d Structure, Autodesk.AutoCAD.Geometry Namespace

Was this information helpful?