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

25 lines 382 B
/** * Floating point comparison tolerance. * Default value is 0.000001 (10e-6) */ export var FLOAT_TOL = 0.000001; /** * 2 * Math.PI */ export var TAU = 2 * Math.PI; /** * 2d origin point */ export var ORIGIN_POINT_2D = { x: 0, y: 0 }; /** * 3d origin point */ export var ORIGIN_POINT_3D = { x: 0, y: 0, z: 0 }; //# sourceMappingURL=AcGeConstants.js.map