// Dartmouth CS 2, Winter 2009, Chris Bailey-Kellogg // Notes 8 | Sketch 5 float a=0, da=0.05; // drawing angle and increment void setup() { fill(0,255,0); noStroke(); smooth(); textFont(loadFont("LucidaSans-18.vlw")); } void draw() { background(0); translate(width/2,height/2); rotate(a); text("hello", 0,0); a+=da; }