Find the point with radius and angle

as3.x = centerX + radius * cos(angle)
as3.y = centerY + radius * sin(angle)

Note that the rotation in the picture linked to is in the “negative direction”. I.e, an increase of the angle, yields a counter-clockwise rotation.

Leave a Comment