-
-
Save jordandobson/3aff53bd195387539e223c1f5df130b9 to your computer and use it in GitHub Desktop.
Framer - Utils Modulate
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
// Framer X Utils.modulate equivalent | |
function modulate(value, rangeA, rangeB, limit = false) { | |
const [fromLow, fromHigh] = rangeA; | |
const [toLow, toHigh] = rangeB; | |
const result = toLow + ((value - fromLow) / (fromHigh - fromLow)) * (toHigh - toLow); | |
if (limit === true) { | |
if (toLow < toHigh) { | |
if (result < toLow) { | |
return toLow; | |
} | |
if (result > toHigh) { | |
return toHigh; | |
} | |
} | |
else { | |
if (result > toLow) { | |
return toLow; | |
} | |
if (result < toHigh) { | |
return toHigh; | |
} | |
} | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment