Just a silly snippet I was playing with.

+ Code Snippetsync on : sync rate 60
txt$ = "A silly little orbiting text thingumajig "
ang# = 0.0
repeat
cls
OrbitText(txt$,mousex(),mousey(),60,ang#)
ang# = wrapvalue(ang# + 0.5)
sync
until spacekey()
end
function OrbitText(txt$,cx#,cy#,radius#,ang#)
spacing# = 360.0/len(txt$)
for i = 1 to len(txt$)
x# = newxvalue(cx#,ang#,radius#)
y# = newzvalue(cy#,ang#,radius#)
text x#,y#,mid$(txt$,i)
ang# = ang# - spacing#
next i
endfunction