Share

Acad.Point3d Function

File

Autodesk.AutoCAD.js

Syntax

JavaScript

function Acad.Point3d(x, y, z);

Group

ACAD Namespace

Parameters

Parameter Description
x Input X coordinate
y Input Y coordinate
z Input Z coordinate

Description

This class wraps AcGePoint3d ObjectARX class. It represents a point in 3D space. It can be viewed as a structure consisting of three doubles.

Properties

Name Type Description Condition
x number Returns the X coordinate axis Read-write
y number Returns the Y coordinate axis Read-write
z number Returns the Z coordinate axis Read-write

Exception

Throws a TypeError object.

ACAD Namespace

Was this information helpful?