int w = 200; int h = 200; size(w,h); background(255); for(int i=0; i<10; i++){ int y = i*20; line(0, y, h, y); }