- Joined
- Dec 12, 2008
- Messages
- 7,385
To find the angle between two points (in radians), you could do:
But, is it ok if I do this:
If yes, which is faster?
Atan2(y-y0,x-x0)
But, is it ok if I do this:
Atan(y0-y/x0-x)
If yes, which is faster?
Last edited: