xxxxxxxxxx
float r = 0;
void setup() {
size(564,1100);
background(255);
rectMode(CENTER);
noLoop();
smooth();
}
void draw() {
for (int i = 65; i < 504; i = i+42) {
for (int j = 60; j < 968; j = j+42) {
rotate(random(-.075,.075));
Box(i, j, 42, 42);
resetMatrix();
}
}
}
void Box(float x, float y, int w, int h) {
rect(x,y,w,h);
noFill();
stroke(0);
}