How do I calculate arc angle between two points on a circle?
Given a circle with a known center point and two points on the circle (开发者_如何学Cthus known radius), how do I determine the angle of the minimum arc between the two points on the circle?
Turn the center to the two points into a pair of vectors, then shove through this.
So, cos-1 ((x1x2 + y1y2 + z1z2) / r2).
精彩评论