/** * Data container for projected points (much faster to do curve operations on than affine) */ export type Point3 = { x: T; y: T; z: T; }; //# sourceMappingURL=Point3.d.ts.map