xxxxxxxxxx
/*------------------------
Georg Ness Reproduction Attempt
Created 2/17
Kali Johnston
SP 2017
knjohnston0704@gmail.com
---------------------------*/
size(500,800);
background(255);
noFill();
for (int i=0; i<500; i=i+30){
for(int j=0; j<800; j=j+30){
rotate(random(0.1,0.5));
rect(i,j,30,30);
}
}