ICC
< back to sketch

int i;

size(300,300);
     strokeWeight(1);



for(i = 0; i <300; i+=5){
     //strokeWeight(i);
     stroke(i,0,0);
     line(0,i,300,i);

}

< back to sketch