-
-
Save zamfi/76846ce7df592033993d568793843cba 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); | |
ellipse(width/2, height/2, 100, 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