xxxxxxxxxx
/*------------------------
Georg Ness Reproduction Attempt #2
Created 2/17
Kali Johnston
SP 2017
knjohnston0704@gmail.com
---------------------------*/
float r =0;
void setup(){
size(500,800);
background(255);
noFill();
noLoop();
rectMode(CENTER);
}
void draw(){
for (int i=0; i<500; i=i+30){
r=0;
for(int j=0; j<800; j=j+30){
float x=random(-0.1,0.1);
float y=j/30;
translate(i,j);
rotate(r);
rect(random(-y,y), random(-y,y), 30,30);
resetMatrix();
r=r+random(-x,x);
}
}
}