Given a circle with a known center point and two points on the circle (thus known radius), how do I determine the angle of the minimum arc between the two points on the circle?
+2
A:
Turn the center to the two points into a pair of vectors, then shove through this.
So, cos-1 ((x1x2 + y1y2 + z1z2) / r2).
Ignacio Vazquez-Abrams
2010-06-08 04:00:03
Thank you, this is what I was looking for.
par
2010-06-08 04:13:55
If you pass a plane through the two points on a sphere, you have a circle in the Euclidean plane.
John D. Cook
2010-06-08 11:14:28