ICC
< back to sketch

size(300,300);

for(int i =0; i<300 ; i=i+10){
  for(int j =0; j<300 ; j=j+10){

    //for(int x =0; x<200 ; x=x+1){
    //  for(int y =0; y<200 ; y=y+1){

        rectMode(CENTER_DIAMETER);
        rect(i,j,5,5);

    //    rectMode(CORNER);
    //    rect(i,j,10,10);
    //    fill(x,0,0);

        rectMode(CENTER_DIAMETER);
        rectMode(CORNER);
        rect(i,j,5,5);

     // }
   // }
  }
}

< back to sketch