@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
18 lines • 682 B
TypeScript
import { AcGeVector3d, AcGeVector3dLike } from '../math/AcGeVector3d';
/**
* The interface representing a point in 3-dimensional space.
*/
export type AcGePoint3dLike = AcGeVector3dLike;
/**
* The class representing a point in 3-dimensional space.
*/
export declare class AcGePoint3d extends AcGeVector3d {
/**
* Convert one point array to one number array
* @param array Input one point array
* @param includeZ Include z cooridinate in returned number array if it is true.
* @returns Return converted number array
*/
static pointArrayToNumberArray(array: AcGePoint3d[], includeZ?: boolean): number[];
}
//# sourceMappingURL=AcGePoint3d.d.ts.map