Skip to content

Instantly share code, notes, and snippets.

@yoggy
Created May 15, 2016 10:42
Show Gist options
  • Save yoggy/e88492ea8dd6adf3757d169908d39373 to your computer and use it in GitHub Desktop.
Save yoggy/e88492ea8dd6adf3757d169908d39373 to your computer and use it in GitHub Desktop.
size(1024, 500);
background(#ffffff);
colorMode(HSB);
for (int i = 0; i < 50; ++i) {
int h = (int)random(-60, 80);
int s = (int)random(100, 255);
int b = (int)random(255, 255);
float x = random(0, width);
float y = random(0, height);
float rr = random(10, 500);
noStroke();
fill(h, s, b, 20);
ellipse(x, y, rr, rr);
}
@yoggy
Copy link
Author

yoggy commented May 15, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment