void setup(){ size(400, 400); background(255); } void draw(){ for (int i = 0; i < 400; i++) { point(i, i); } }