Last active
June 25, 2017 23:18
-
-
Save behreajj/c620ea2798b6d8a1fea6a39ed7e5c49d to your computer and use it in GitHub Desktop.
Color Gradients 1-3
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
for (int i = left; i <= right; ++i) { | |
stroke(lerpColor(red, blue, (i - left) / float(right - left))); | |
line(i, top, i, bottom); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment