Skip to content

Instantly share code, notes, and snippets.

@yoggy
Created June 1, 2018 10:04
Show Gist options
  • Save yoggy/7d76b54a31ba321be5acd4d2122cf3a4 to your computer and use it in GitHub Desktop.
Save yoggy/7d76b54a31ba321be5acd4d2122cf3a4 to your computer and use it in GitHub Desktop.
size(1024, 500);
background(16,64,128);
noStroke();
fill(32,32,128);
float h = 51;
for (int y = 1; y < height; y += h) {
float w = y % 41 + 20;
for (int x = 0; x < width; x += w) {
rect(x, y, w-10, h-40);
}
}
@yoggy
Copy link
Author

yoggy commented Jun 1, 2018

test

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