ICC
< back to sketch

int i;

size(300,300);


for(i=0;i<300; i+=5){

 stroke(450-i,0,0);
 line(0,0,300,i);
 line(300,0,0,i);

}

< back to sketch