Skip to content

Instantly share code, notes, and snippets.

@dinarname
Created July 26, 2019 12:07
Show Gist options
  • Save dinarname/27150c51e3d38dc25b44aa9c6df531b3 to your computer and use it in GitHub Desktop.
Save dinarname/27150c51e3d38dc25b44aa9c6df531b3 to your computer and use it in GitHub Desktop.
example for Machu Pichu, July 26
void setup() {
fullScreen();
background(255, 255, 255);
}
float x, y, d, r, g, b;
void draw() {
x = random(0, width);
y = random(0, height);
d = random(5, 100);
r = random(0, 255);
g = random(0, 255);
b = random(0, 255);
noStroke();
fill(r, g, b);
ellipse(x, y, d, d);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment