@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
17 lines • 571 B
TypeScript
import { AcGeVector2d, AcGeVector2dLike } from './AcGeVector2d';
/**
* The interface representing a point in 2-dimensional space.
*/
export type AcGePoint2dLike = AcGeVector2dLike;
/**
* The class representing a point in 2-dimensional space.
*/
export declare class AcGePoint2d extends AcGeVector2d {
/**
* Convert one point array to one number array
* @param array Input one point array
* @returns Return converted number array
*/
static pointArrayToNumberArray(array: AcGePoint2d[]): number[];
}
//# sourceMappingURL=AcGePoint2d.d.ts.map