@mlightcad/geometry-engine
Version:
The geometry-engine package provides comprehensive geometric entities, mathematical operations, and transformations for 2D and 3D space. This package mimics AutoCAD ObjectARX's AcGe (Geometry) classes and provides the mathematical foundation for CAD opera
12 lines • 379 B
TypeScript
/**
* Abstract base class for all kinds of geometries.
*/
export declare abstract class AcGeShape {
protected _boundingBoxNeedsUpdate: boolean;
/**
* When this is set, it calculates the bounding box of this shape and resets this property to false.
* Default is false.
*/
get boundingBoxNeedUpdate(): boolean;
}
//# sourceMappingURL=AcGeShape.d.ts.map