船员公众号
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
554 B

5 months ago
// @ts-nocheck
/**
*
* @param min
* @param max
* @param val
* @returns
*/
export function clamp(min: number, max: number, val: number): number {
return Math.max(min, Math.min(max, val));
}
// console.log(clamp(0, 10, 5)); // 输出: 5(在范围内,不做更改)
// console.log(clamp(0, 10, -5)); // 输出: 0(小于最小值,被限制为最小值)
// console.log(clamp(0, 10, 15)); // 输出: 10(大于最大值,被限制为最大值)