// R&F p. 174, 20-03 float y = 0.0; // depth void draw() { frameRate(4); // 4 fps line(0, y, 100, y); // horiz line y += 0.5; // incrment depth }