# example3.py

from Processing import *
window(500, 500)

background(255)
noStroke()
fill(0)

translate( 0.5*width(), 0.5*height() )

for i in range(36):
    text( i, 0.0, -150.0 )
    rotate(10.0 * (PI/180.0))
