Maps a number from one range to another range.
- Return
num
mapped betweenoutMin
–outMax
frominMin
–inMax
.
代码实现
const mapNumRange = (num, inMin, inMax, outMin, outMax) =>
((num - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin;
mapNumRange(5, 0, 10, 0, 100); // 50
翻译自:https://www.30secondsofcode.org/js/s/map-number-to-range