像旋钮调整一样在圆形路径中移动圆圈

时间:2009-06-11 12:09:17

标签: ios math

如何在旋钮调整的圆形路径中移动圆圈?

1 个答案:

答案 0 :(得分:2)

xcord = centerX+(radius*cos(theta))
ycord = centerY+(radius*cos(theta))


put the circle in (xcord,ycord)

increment theta by a small radian value.......