-
-
Save Askhento/7f2aa670f819e20f9645c30c238aac26 to your computer and use it in GitHub Desktop.
map() function for GLSL known from Processing & openFrameworks
This file contains 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
float map(float value, float min1, float max1, float min2, float max2) { | |
return min2 + (value - min1) * (max2 - min2) / (max1 - min1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment