Skip to content

Instantly share code, notes, and snippets.

Created August 31, 2017 00:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6dbb929d4ca61dd36d9bcec385d4adc9 to your computer and use it in GitHub Desktop.
Save anonymous/6dbb929d4ca61dd36d9bcec385d4adc9 to your computer and use it in GitHub Desktop.
void setup() {
background (255);
size (600, 600);
noLoop();
}
void draw () {
for (int i = 0; i < 600; i = i + 35) {
for (int j = 0; j < 600; j = j + 14) {
drawSendnudes (i, j);
}
}
}
void drawSendnudes (int i, int j) {
stroke (random (255));
rect(i, j + 2, random(79, 155), 90);
fill (255);
ellipse (i, j, 20, 20);
line (i, j, 300, 200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment