Created
June 25, 2017 17:45
-
-
Save behreajj/37f3e8dcf0d13717dbb9f50087df9afd to your computer and use it in GitHub Desktop.
Color Gradients 2-13
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
| float smootherStep(float origin, float dest, float step) { | |
| return map(step * step * step * (step * (step * 6 - 15) + 10), | |
| 0, 1, origin, dest); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment