Skip to content

Instantly share code, notes, and snippets.

Created September 20, 2017 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/cca4d4aa13909bf15a458dc6bbfc1adb to your computer and use it in GitHub Desktop.
Save anonymous/cca4d4aa13909bf15a458dc6bbfc1adb to your computer and use it in GitHub Desktop.
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