UNPKG

@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

22 lines 656 B
/** * Abstract base class for all kinds of geometries. */ var AcGeShape = /** @class */ (function () { function AcGeShape() { this._boundingBoxNeedsUpdate = false; } Object.defineProperty(AcGeShape.prototype, "boundingBoxNeedUpdate", { /** * When this is set, it calculates the bounding box of this shape and resets this property to false. * Default is false. */ get: function () { return this._boundingBoxNeedsUpdate; }, enumerable: false, configurable: true }); return AcGeShape; }()); export { AcGeShape }; //# sourceMappingURL=AcGeShape.js.map