size (200,200); background(255); int s=1;//stroke weight for (int x=0; x<200; x=x+13) { strokeWeight(s); s=s+1; line (0,x,200,x); }