Share

AcDbEntity::getSubentPathGeomExtents

C++

ACDBCORE2D_PORT ADESK_SEALED_VIRTUAL Acad::ErrorStatus getSubentPathGeomExtents(
    const AcDbFullSubentPath& path, 
    AcDbExtents& extents
) const;

Description

Retrieves the geometric extents for a subentity.

Unimplemented at the AcDbEntity level, this method is intended to be overridden in derived classes.

Derived classes should calculate and return the corner points (in WCS coordinates) of a box (with edges parallel to the WCS X, Y, and Z axes) that encloses the 3D extents of the subentity, and return those points as an instance of class AcDbExtents in the "extents" parameter.

Returns Acad::eOk if successful. The default implementation returns Acad::eNotApplicable.

Parameters

Parameters Description
path Input the path to the subentity
extents Output geometric extents, expressed in world coordinates, of the subentity

Links

AcDbEntity

Was this information helpful?