import flux.vertext.*; import processing.opengl.*; Vertext bigFont; Vertext giantFont; String[] theText; PFont times; PFont regularFont; long f1, f2, f3; int i; int max_iters = 400; void setup(){ size(550,550, OPENGL); P5Extend.register(this); giantFont = new Vertext("TimesNewRoman", 800, 210); bigFont = new Vertext("EurostileBold", 255, 80); regularFont = createFont("Georgia-Bold", 24); //textFont(); textMode(SCREEN); theText = new String[0]; loadTextfile(); background(200, 200, 200); f1 = 0; f2 = 1; f3 = f1 + f2; i = 0; line(i, height, i, height - f1); i++; line(i, height, i, height - f2); i++; line(i, height, i, height - f3); i++; } void draw(){ //background(240); if(i < max_iters) { f1 = f2; f2 = f3; f3 = f1 + f2; line(i, height, i, height - f3); stroke(0, 120, 120); line(i, height, i, height - f2); stroke(#000000); println(f3); i++; } directionalLight(100, 100, 100, 0, 0, -1); //spotLight(255, 255, 255, 20, 50, 100, -1, 0, -1, PI/2, 1); //frameRate(1); giantFont.text("Q", -200, 300); bigFont.text("VERTEXT", -10, 200); fill(random(100,120),100,100,random(220,240)); noStroke(); textFont(regularFont, 18); int y=35; for (int i=0; i