If I have 2 points (x0,y0) which is the center of the circle, and another point (x,y) (this is the red dot on the circle boundary in the image). How can I get the angle of the dot?
Note, it should return an angle in degrees, from [0,360). The red dot angle in the image is approximately 70 degrees.
How can I do this in python?
Thanks
This doesn't seem to work.
(dx, dy) = (x0-x, y-y0)
angle = atan(float(dy)/float(dx))
if angle < 0:
angle += 180