I have two points, one is always at the origin (0,0), and the other can be anywhere else in the world. I\'d like to find the angle between them, respective to the horizontal axi
Most programming languages/APIs provide a function, atan2(), which finds the angle and takes the quadrant into consideration. Just use that.