// "Dickinson Poem" by JOHN PARK
int i=0;
float rotater = 0;
String mytext = "A bird came down the walk: He did not know I saw; He bit an angle-worm in halves And ate the fellow, raw.And then he drank a dew From a convenient grass, And then hopped sidewise to the wall To let a beetle pass. He glanced with rapid eyes That hurried all abroad,-- They looked like frightened beads, I thought; He stirred his velvet head Like one in danger; cautious, I offered him a crumb, And he unrolled his feathers And rowed him softer home Than oars divide the ocean, Too silver for a seam, Or butterflies, off banks of noon, Leap, splashless, as they swim.";
String [] myArray = split (mytext, " ");


void setup(){
size(800, 600);
background(0);
//frameRate(10);
PFont font;
font = loadFont("Monospaced.italic-48.vlw");
textFont(font);
println();
}

void draw(){
  rotater += .1;
  i++; 
  if(i> (myArray.length-1)){
    i=0;
  }
  
  fill(255,45);  // white text, 25 alpha
  translate(mouseX, mouseY);
  rotate (rotater);
  text(myArray[i],0,0);
  delay(50); // in milliseconds
}