Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created June 22, 2015 19:59
Show Gist options
  • Save drewlesueur/970f4a077e7179e9b5cd to your computer and use it in GitHub Desktop.
Save drewlesueur/970f4a077e7179e9b5cd to your computer and use it in GitHub Desktop.
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