xxxxxxxxxx
//Ethan Beverly
//beverly.84@osu.edu
//Internet Art
//Schotter Reproduction
//2-21-17
void setup(){
size(425,730);
background(255);
rectMode(CENTER);
noFill();
noLoop();
}
void draw(){
for(int i = 30; i < 400; i = i + 30){ //rectangales for entire page
float r=0;
for(int j = 30; j < 700; j = j + 30){
float x = .1;
float y = j/50;
translate(i,j);
rotate(random(-r,r));
rect(random(-y,y),random(-y,y),30,30);
resetMatrix();
r += random(-x,x);
}
}
}