arcade-physics
Version:
Use Arcade Physics without Phaser.
20 lines • 588 B
TypeScript
export default Wrap;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Wrap the given `value` between `min` and `max.
*
* @function Phaser.Math.Wrap
* @since 3.0.0
*
* @param {number} value - The value to wrap.
* @param {number} min - The minimum value.
* @param {number} max - The maximum value.
*
* @return {number} The wrapped value.
*/
declare function Wrap(value: number, min: number, max: number): number;
//# sourceMappingURL=Wrap.d.ts.map