Here a bit of code I have taken from my weather project, Its the wind direction indicator, looking for someone who may be able to put the 16 wind points on it so that it looks like gauge image instead of letters in a near circle.
Rem Project: pointertest
Rem Created: 08/03/2007 13:21:46
Rem ***** Main Source File *****
set display mode 1024,768,16
sync on
sync rate 0
set window title "iButton.net"
set window on
set window layout 1, 1, 1
sync on
color backdrop 0
autocam off
position camera 0,0,0,-60
make object sphere 3,2.5
set object smoothing 3, 100
make object cone 4,5
set object smoothing 4, 100
make mesh from object 32,3
make mesh from object 33,4
add limb 3,1,32
add limb 3,2,33
link limb 3,1,2
scale limb 3,2,25,100,25
offset limb 3,2,0,3,0
position object 3,35,20,0
delete object 4
time=timer()
do
text 880,90,"N"
text 901,111,"NNE"
text 930,125,"NE"
text 941,137,"ENE"
text 945,160,"E"
text 941,178,"ESE"
text 930,195,"SE"
text 901,225,"SSE"
text 880,230,"S"
text 841,225,"SSW"
text 830,210,"SW"
text 801,186,"WSW"
text 815,160,"W"
text 801,137,"WNW"
text 830,125,"NW"
text 801,111,"NNW"
if timer()>time+1000
rotate limb 3,1,0,0,rnd(360),0
time=timer()
endif
sync
loop
Dark Physics makes any hot drink go cold.