UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 297 B
/** * Returns a value with the magnitude of x and the sign of y. * NOTE: a port of c++ method from tgmath.h * @param {number} x * @param {number} y take sign from this value * @returns {number} */ export function copysign(x: number, y: number): number; //# sourceMappingURL=copysign.d.ts.map