I have the following problem. I have several points on the plain, and there is another point somewhere in the middle of them. The goal is to find angular distance between any two points.
My only thought so far is to draw a line between a central point and all the lines from the central point to all the others and see where these lines intersect the circle. If we shift the coordinates to make central point (0,0), then it becomes
x² + y² = 1 y = m*x
(m is trivial to calculate here)
x² + (m*x)² = 1
(1+m)(x²) = 1
x = ±sqrt(1/(1+m))
plus/minus is trivially resolved by seeing where the original point was in relation to the centre.
y = m*x
(Of course if the points are in vertical alignment m is undeterminant, but that is trivially resolved by setting x=0 and y to either 1 or -1).
Then i can easily through pythagorean distance find the distance of these points on the circle. But something tells me that there must be a much easier way to turn all these into a single value as projections on a circle.