Acad.Bounds3d Function
File
Autodesk.AutoCAD.js
Syntax
JavaScript
function Acad.Bounds3d(minPt3d, maxPt3d);
Group
Parameters
Parameter | Description |
---|---|
minPt3d | represents the minimum point of the extents |
maxPt3d | represents the maximum point of the extents |
Description
The object represents the 3D geometric extents of an entity. It is similar to AcDbExtents
, with minimum and maximum points.
Properties
Name | Type | Description | Condition |
---|---|---|---|
minPt3d | Acad.Point3d | Returns the minimum point of the extents. | Read-write |
maxPt3d | Acad.Point3d | Returns the maximum point of the extents. | Read-write |
Exception
Throws a TypeError
object.