Created
January 16, 2016 19:26
-
-
Save mortenjust/5425193ca4888ac3d75c to your computer and use it in GitHub Desktop.
Processing-like map()
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
func rangeMap(whereIs value:Double, low1:Double, low2:Double, high1:Double, high2:Double) -> Double { | |
return low2 + (value - low1) * (high2 - low2) / (high1 - low1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment