> Thanks. Looks like time to do some polar to rectangular calculations.

X = 27 * cos((pinno + 0.5) * (360.0 / 11))
Y = 27 * sin((pinno + 0.5) * (360.0 / 11))

Or:

radius = 27
incr = 360.0/11

for each pin:

theta = (pinno + 0.5) * incr

X = radius * cos(theta)
Y = radius * sin(theta)

- Cheers,
John

-- 
You received this message because you are subscribed to the Google Groups 
"neonixie-l" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to