int TRACKING = 2; PFont f; byte[] textFile; int lineHeight; float flashlightSize = 150; void setup() { size(500, 550); smooth(); colorMode(RGB, 1.0); noCursor(); f = loadFont("Aharoni.vlw"); textFont(f, 12); lineHeight = int(textAscent()+textDescent()); textFile = loadBytes("prufrock.txt"); } void draw() { background(1); drawText(); }