Created
September 20, 2017 18:24
-
-
Save anonymous/c56c00e9b1ac4b29b1c0c09be5397f69 to your computer and use it in GitHub Desktop.
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
background(255); | |
noStroke(); | |
var h = 0; | |
while(true) { | |
background(255); | |
colorMode(HSB); | |
fill(h, 100, 100); | |
rect(width/2, height/2, random(100), random(100)); | |
h = h + 5; | |
if (h >= 360) { | |
h = 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment