UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 352 B
/** * compute the fractional part of the argument * GLSL "fract" function port * @see https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/fract.xhtml * @param {number} v * @returns {number} returns the fractional part of x. This is calculated as x - floor(x). */ export function fract(v: number): number; //# sourceMappingURL=fract.d.ts.map