Created
June 1, 2018 10:04
-
-
Save yoggy/7d76b54a31ba321be5acd4d2122cf3a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
} | |
} |
Author
yoggy
commented
Jun 1, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment