UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

15 lines 483 B
/** * Increment x by the next representable float * @param x - the float * @param incSize - the increment size * @returns - the incremented float */ export declare function nextUp(x: number, incSize?: number): number; /** * Decrement x by the next representable float * @param x - the float * @param decSize - the dcrement size * @returns - the decremented float */ export declare function nextDown(x: number, decSize?: number): number; //# sourceMappingURL=floats.d.ts.map