Last active
October 15, 2015 12:31
-
-
Save jonesfish/8dde33cb12eb9c5317d7 to your computer and use it in GitHub Desktop.
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
| size(400,300); | |
| colorMode(HSB); | |
| float spacing = 20; | |
| for (float x=0; x < width; x+=spacing){ | |
| float hue = x/width * 255; | |
| noStroke(); | |
| fill(hue, 255, 255); | |
| rect(x,0,spacing,height); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment