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

19 lines 449 B
import { AcGePoint2dLike, AcGePoint3dLike } from '../math'; /** * Floating point comparison tolerance. * Default value is 0.000001 (10e-6) */ export declare const FLOAT_TOL: number; /** * 2 * Math.PI */ export declare const TAU: number; /** * 2d origin point */ export declare const ORIGIN_POINT_2D: AcGePoint2dLike; /** * 3d origin point */ export declare const ORIGIN_POINT_3D: AcGePoint3dLike; //# sourceMappingURL=AcGeConstants.d.ts.map