Spaces:
Paused
Paused
File size: 282 Bytes
e123fec |
1 2 3 4 5 |
// Function to map a value from one range to another
export const mapRange = (value: number, inMin: number, inMax: number, outMin: number, outMax: number): number => {
return Math.min(outMax, Math.max(outMin, ((value - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin));
};
|