xxxxxxxxxx
size(800,600);
background(0);
smooth(100);
for(int i= 100; i<300; i=i+3){
for (int b=0; b<900; b= b+50){
stroke(255,200);
fill(187,66,201,27);
rect(i,b,400,400);
translate(10,300);
stroke(60,250,70,50);
fill(18,60,20,55);
rect(i,b,600,500);
rotate(-45);
}
}