Created
June 22, 2015 19:59
-
-
Save drewlesueur/970f4a077e7179e9b5cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function scale(x, realMin, realMax, scaledMin, scaledMax) { | |
var realDiff = realMax - realMin | |
var scaledDiff = scaledMax - scaledMin | |
var xOffset = x - realMin | |
var ratio = xOffset / realDiff | |
var appliedValue = ratio * scaledDiff | |
var ret = scaledMin + appliedValue | |
return ret | |
} | |
var scaled = scale(75, 50, 100, 200, 300) | |
console.log(scaled) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment