fullscreen import processing.pdf.*;
void setup(){
size(500,500);
beginRecord(PDF, "THREE.pdf");
size(500,500);
background(0);
noStroke();
smooth();
stroke(116,902,245,100);
strokeWeight(4);
for(int x =0;x<1000;x+=50)
for(int y=0;y<1000;y+=50)
line(0,x,y,0);
endRecord();
exit();
}