// Alphabet :: Dynamic Word // Paul Bartlett // Utilizes code from Golan Levin's alphabet example PImage ceilFloor; Letter[] ListOfLetters; int letterHeight = 125; int kern = 40; int margin = 100; char characters[] = {'s','u','s','p','e','n','d'}; float xoff1 = 0.0; float xoff2 = 0.0; float letterData[][] = new float[26][25]; // 5 control points x 2 curves + 0/1/2 for knot float currentLetter[] = new float[25]; boolean colorsOn = true; //------------------------------------------------------ void setup(){ size(480,130); ceilFloor = loadImage("ceilfloor.png"); ListOfLetters = new Letter[characters.length]; for (int a=0; a