/****rotate.pde**********/ void setup() { size(500, 500); smooth(); noLoop(); } void draw() { background(255); fill(0); translate( width/2, height/2 ); for (int i=0; i<36; i++) { text( i, 0.0, -150.0 ); rotate(PI/18.0); } }