@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
12 lines • 362 B
TypeScript
/**
* Integer square root
*
* @author Jim Ulery (attributed on hextreme)
* @see https://en.wikipedia.org/wiki/Integer_square_root
* @see https://git.immc.ucl.ac.be/hextreme/hxt_seqdel/-/blob/master/src/hxt_tetrahedra.c#L54
*
* @param {number} input
* @returns {number}
*/
export function isqrt(input: number): number;
//# sourceMappingURL=isqrt.d.ts.map