String s = "LET us go then, you and I,\nWhen the evening is spread out against the sky\nLike a patient etherised upon a table;\nLet us go, through certain half-deserted streets\nThe muttering retreats\nOf restless nights in one-night cheap hotels\nAnd sawdust restaurants with oyster-shells:\nStreets that follow like a tedious argument\nOf insidious intent\nTo lead you to an overwhelming question ...\nOh, do not ask, \“What is it?\”\nLet us go and make our visit.\n\nIn the room the women come and go\nTalking of Michelangelo.\n"; PFont f; float y; void setup() { size(800, 600, P3D); f = createFont("Arial Bold", 20, true); y = height; println(PFont.list()); } void draw() { background(0); fill(255, 255, 0); translate(width/2, y); rotateX(PI/4); textFont(f); textAlign(CENTER); text(s, 0, 0); y--; if (y < 0) y = height; }