xxxxxxxxxx
20
var r = [];
function setup() {
createCanvas(600, 600);
background("white");
noFill();
for(var i=-6; i<6; i++){
for(var j=-11; j<11; j++){
push();
translate(width/2 + i*20, j*20+height/2);
rotate(((j+11)/50)*random(-PI, PI));
square(0, 0, 20);
pop();
}
}
}
function draw() {
}