UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

8 lines (7 loc) 224 B
/** * Smallest safe increment for a Float32 * @see https://www.cplusplus.com/reference/cfloat/ * @see https://bitbashing.io/comparing-floats.html * @type {number} */ export const FLT_EPSILON_32 = 1.192092896E-7;