Created
September 20, 2017 18:36
-
-
Save anonymous/cca4d4aa13909bf15a458dc6bbfc1adb 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(); | |
colorMode(HSB); | |
while (true) { | |
fill(random(255), 50, 100); | |
var r = random(30, 60); | |
ellipse(random(width), random(height), r, r); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment