(value: number, min: number, max: number)
| 16 | |
| 17 | // Helper functions |
| 18 | function clamp(value: number, min: number, max: number): number { |
| 19 | return Math.max(min, Math.min(max, value)); |
| 20 | } |
| 21 | |
| 22 | function clamp01(value: number): number { |
| 23 | return Math.max(0, Math.min(1, value)); |
no test coverage detected