Skip to content

Instantly share code, notes, and snippets.

@zamfi
Forked from anonymous/random-circles.js
Last active September 20, 2017 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zamfi/812418a191cb8c61ae3ada8e39de2f88 to your computer and use it in GitHub Desktop.
Save zamfi/812418a191cb8c61ae3ada8e39de2f88 to your computer and use it in GitHub Desktop.
background(255);
strokeWeight(3);
colorMode(HSB);
while (true) {
var h = random(360)
stroke(h, 50, 90);
fill(h, 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