phaser/v3/typings/math/Clamp.d.ts
2017-01-16 22:43:07 +01:00

10 lines
346 B
TypeScript

/**
* Force a value within the boundaries by clamping it to the range `min`, `max`.
*
* @method Phaser.Math#clamp
* @param {float} v - The value to be clamped.
* @param {float} min - The minimum bounds.
* @param {float} max - The maximum bounds.
* @return {number} The clamped value.
*/
export default function (v: any, min: any, max: any): any;