Creates a new 3D solid entity from raw ACIS data.
Raw ACIS SAT text (group 1/3 lines).
Optionalversion: numberDXF group 70 ACIS version number, when present.
Creates a new 3D solid entity from binary SAB and/or SAT text payloads.
Construction options with optional SAB bytes and SAT text.
Raw ACIS SAT text for this solid, preserved for future full B-rep parsing.
Gets the attributes object for this AcDbObject.
The AcCmObject instance containing all attributes
Gets the database in which this object is resident.
When an object isn't added to a database, this property returns the current working database. After it is added to a database, it will be set automatically. You should never set this value manually.
The database this object belongs to
Sets the database for this object.
This is typically set automatically when the object is added to a database. Manual setting should be avoided unless you know what you're doing.
The database to associate with this object
Gets the DXF entity type name written to the file.
This value is the literal DXF record type emitted for the entity during
DXF export, such as LINE, INSERT, or DIMENSION.
Every concrete entity class must explicitly define this property so the DXF export contract stays local to the entity implementation rather than being inferred by the base class.
The DXF entity type name used during export
Gets the objectId of the extension dictionary owned by this object.
If the object does not have an extension dictionary, this returns undefined.
In ObjectARX terms, this is equivalent to AcDbObject::extensionDictionary().
The extension dictionary objectId, or undefined
Sets the objectId of the extension dictionary owned by this object.
This does not create or delete the dictionary object itself ??it only establishes or clears the ownership relationship.
Passing undefined removes the association.
The extension dictionary objectId, or undefined
Revision GUID for the modeler geometry, when present (DXF group 2).
Whether wireframe segments or fallback point data could be extracted from the supplied SAB/SAT payload.
Soft-pointer handle to ACSH_HISTORY_CLASS (DXF group 350), when present.
Resolved later when OBJECTS-section data is available.
Returns true if this object is temporary and not yet committed to the database.
A temporary object is identified by its objectId starting with the TEMP prefix.
Gets the name of the layer referenced by this entity.
The layer name
Sets the name of the layer for this entity.
The new layer name
Gets the line style for this entity.
This method returns the line style based on the entity's linetype and other properties.
The line style object
Gets the name of the line type referenced by this entity.
The linetype name
Sets the name of the line type for this entity.
The new linetype name
Gets the line type scale factor of this entity.
When an entity is first instantiated, its line type scale is initialized to an invalid value. When the entity is added to the database, if a linetype scale has not been specified for the entity, it is set to the database's current line type scale value.
The linetype scale factor
Sets the line type scale factor for this entity.
The new linetype scale factor
Gets the line weight used by this entity.
The line weight value
Sets the line weight for this entity.
The new line weight value
Gets the object ID.
AutoCAD uses 64-bit integers to represent handles, which exceed the maximum integer value of JavaScript. Therefore, strings are used to represent object handles.
The object ID as a string
Sets the object ID.
The new object ID
Gets the object ID of the owner of this object.
The owner object ID
Sets the object ID of the owner of this object.
The new owner object ID
Returns the full property definition for this entity, including all property groups and runtime accessors.
This getter is used by the property inspector UI to:
The returned structure contains:
Note: The groups array contains AcDbEntityPropertyGroup objects whose
properties entries are runtime-resolved property descriptors that include
AcDbPropertyAccessor objects. Each property object therefore
conforms to AcDbEntityRuntimeProperty.
Binary SAB/ASM payload attached via ACDSDATA or construction options.
Whether the ASM/ACIS payload uses SAT text caching (DXF group 290).
Gets the transparency level of this entity.
The transparency value.
Sets the transparency level of this entity.
The transparency value.
Gets the type name of this entity.
This method returns the entity type by removing the "AcDb" prefix from the constructor name.
The entity type name
DXF group 70 ACIS version number, when present.
Gets whether this entity is visible.
True if the entity is visible, false otherwise
Sets whether this entity is visible.
True to make the entity visible, false to hide it
ProtectedassignAssociates this object with a database. Subclasses may override database
and call this helper to avoid super setter restrictions.
Creates the extension dictionary for this object if it does not already exist.
This method closely mirrors the behavior of
AcDbObject::createExtensionDictionary() in ObjectARX.
The objectId of the extension dictionary
Reads this object from a DXF filer (ObjectARX dxfIn).
Reads common handle/owner fields, then delegates to dxfInFields. XData (group 1001+) is consumed when present after object fields.
Group-102 control strings ({ACAD_XDICTIONARY, {ACAD_REACTORS, …) are
consumed here so subclass readers still see handle/owner/subclass markers
that follow them. Many real DXF writers emit these blocks on LAYER and
entity records; skipping them would leave name/layer unset.
ProtecteddxfConsumes a DXF group-102 control-string block that was already opened
(the opening 102 value is startValue, typically {ACAD_XDICTIONARY
or {ACAD_REACTORS).
For {ACAD_XDICTIONARY, the first soft-owner handle (360) is stored as
extensionDictionary. Other control strings are skipped until the
matching closing 102 / }.
Reads AcDbEntity common fields until the next subclass marker or object end.
ProtecteddxfConsume XData pairs starting at group 1001 until end of object.
Writes DXF fields for this object.
DXF output writer.
The instance (for chaining).
ProtecteddxfEmit all attached XData buffers (DXF groups 1000–1071).
Gets the value of the specified attribute.
This method will throw an exception if the specified attribute doesn't exist. Use getAttrWithoutException() if you want to handle missing attributes gracefully.
The name of the attribute to retrieve
The value of the specified attribute
Gets the value of the specified attribute without throwing an exception.
This method returns undefined if the specified attribute doesn't exist, making it safer for optional attributes.
The name of the attribute to retrieve
The value of the specified attribute, or undefined if it doesn't exist
ProtectedgetProtectedgetCreates the "General" property group for this entity.
This group contains common metadata attributes shared by all CAD entities (e.g., handle, layer). Each property includes a runtime AcDbPropertyAccessor allowing the property inspector to read and update live values.
Subclasses may override this method to append additional general-purpose properties while still preserving this base set.
A fully resolved property group containing runtime-accessible properties.
ProtectedgetRetrieves the XData associated with this object for a given application ID.
Extended Entity Data (XData) allows applications to attach arbitrary, application-specific data to an AcDbObject. Each XData entry is identified by a registered application name (AppId) and stored as an AcDbResultBuffer.
This method is conceptually equivalent to AcDbObject::xData() in ObjectARX,
but simplified to return the entire result buffer for the specified AppId.
The application ID (registered AppId name) that owns the XData
The AcDbResultBuffer associated with the AppId, or undefined
if no XData exists for that AppId
ProtectedhasProtectedhasProtectedhasFinds intersection points between this entity and another entity.
This method mirrors ObjectARX AcDbEntity::intersectWith. Intersection
points are returned in WCS. The optional projPlane argument corresponds
to the ObjectARX overload that intersects the projections of both
entities onto a plane (apparent intersection). gsMarker subentity
filtering is not implemented.
Subclasses should override subGetIntersectCurves instead of this method.
The other entity
Whether to extend this entity, the other entity, both, or neither
OptionalprojPlane: AcGePlaneOptional projection plane for apparent intersection
Intersection points in WCS; empty when the entities do not intersect
Removes the XData associated with the specified application ID.
After removal, calls to getXData() for the same AppId will return undefined.
If no XData exists for the given AppId, this method has no effect.
This mirrors the behavior of clearing XData for a specific application in ObjectARX rather than removing all XData from the object.
The application ID whose XData should be removed
Resolves the effective properties of this entity.
This method determines the final, usable values for entity properties such as layer, linetype, lineweight, color, and other display-related attributes. If a property is not explicitly set on the entity (for example, it is undefined or specified as ByLayer / ByBlock), the value is resolved according to the current AutoCAD system variables and drawing context.
Typical system variables involved in the resolution process include, but are not limited to:
CLAYER – Current layerCELTYPE – Current linetypeCELWEIGHT – Current lineweightCECOLOR – Current colorThe resolution follows AutoCAD semantics:
This method does not change user-defined property settings; it only computes and applies the final effective values used for display, selection, and downstream processing.
ProtectedresolveRestores internal state from a detached clone while preserving identity fields.
Clone produced by clone or clonePreservingIdentity.
Sets the value of an attribute.
The name of the attribute to set
Optionalval: AcDbObjectAttrs[A]The value to assign to the attribute
ProtectedsetAttaches or replaces XData for this object.
If XData already exists for the given AppId, it is replaced by the provided AcDbResultBuffer. The caller is responsible for ensuring that:
This method is conceptually similar to AcDbObject::setXData() in ObjectARX.
The result buffer containing the XData to attach
ProtectedshouldGets the grip points for this entity.
Grip points are the control points that can be used to modify the entity. This method should be overridden by subclasses to provide entity-specific grip points.
Array of grip points as 3D points
Returns the WCS curve primitives used by intersectWith.
Default implementation returns [] (no intersections). Subclasses with
drawable curve geometry override this; callers should use intersectWith.
Entities without curve primitives (text, points, attributes) keep this
empty default, matching ObjectARX.
Gets the object snap points for this entity.
Object snap points are the points that can be used for precise positioning when drawing or editing. This method should be overridden by subclasses to provide entity-specific snap points.
The object snap mode
The pick point
The last point
Array to populate with snap points
OptionalgsMark: anyThe object id of subentity. For now, it is used by INSERT entity only. In AutoCAD, it uses AcGiSubEntityTraits::setSelectionMarkerInput to set GS marker of the subentity involved in the object snap operation. For now, we don't provide such a GS marker mechanism yet. So passed id of subentity as GS marker. Maybe this behavior will change in the future.
OptionalinsertionMat: AcGeMatrix3dCumulative insertion transform matrix from nested block references. This parameter is primarily used by INSERT entities.
Moves the grip points at the specified indices by the given offset.
This method should be overridden by subclasses to provide entity-specific
grip editing behavior, matching AutoCAD AcDbEntity::subMoveGripPointsAt.
Zero-based indexes into the array returned by subGetGripPoints
WCS translation offset applied to the selected grips
This entity after the grip edit
Draws decoded wireframe segments when available; otherwise draws a bounding
box around extracted point records.
The renderer to use for drawing.
The rendered wireframe entity, or undefined when no geometry
could be extracted.
Transforms the extracted wireframe and point cloud by the specified matrix.
acisData itself is left untouched since it isn't fully parsed.
4×4 transformation matrix.
This instance (for chaining).
Called by cad application when it wants the entity to draw itself in WCS (World Coordinate System) and acts as a wrapper / dispatcher around subWorldDraw(). The children class should never overidde this method.
It executes the following logic:
The renderer to use for drawing
Optionaldelay: booleanThe flag to delay creating one rendered entity and just create one dummy entity. Renderer can delay heavy calculation operation to avoid blocking UI when this flag is true. For now, text and mtext entity supports this flag only. Other types of entities just ignore this flag.
The rendered entity, or undefined if drawing failed
Represents a 3D solid (ACIS/ASM B-rep) entity, such as those created by AutoCAD's BOX, WEDGE, EXTRUDE, or boolean solid-modeling commands.
Full B-rep tessellation is not yet supported. When binary SAB or SAT text is available, this entity renders a best-effort wireframe derived from decoded edges and curves; otherwise it falls back to a bounding-box wireframe built from embedded
pointrecords in the SAT stream.