export function clampNumber(value: number, min: number, max: number) { return Math.min(Math.max(value, min), Math.max(min, max)); }