Skip to content

Instantly share code, notes, and snippets.

@dirk
Created February 27, 2018 06:04
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 dirk/967185e69e80588f8a62a33183a7cf06 to your computer and use it in GitHub Desktop.
Save dirk/967185e69e80588f8a62a33183a7cf06 to your computer and use it in GitHub Desktop.
void setup() {
size(200, 200);
for (var i = 0; i < 10000; i++) {
var x = (Math.random() - 0.5) * 150;
var y = (Math.random() - 0.5) * 150;
if ((Math.sqrt((x * x) + (y * y))) > 75) continue;
point(x + 100, y + 100);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment