UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines (9 loc) 190 B
import { EPSILON } from "../../../../core/math/EPSILON.js"; /** * * @param {number} v * @returns {boolean} */ export function NotZero(v) { return Math.abs(v) > EPSILON; }