Why are the parameters to `atan2` “backwards”?
Why is it that the parameters to the atan2 function are “backwards”? Ie, why does it accepts coordinates in the form y, x
instead of the standard x, y开发者_如何学Go
?
Because it's similar to atan(y / x)
, with y
as numerator and x
as denominator.
Probably because atan2(y,x) = atan(y/x) ± nπ
and here, y
and x
come in the same order.
The single argument version of arctangent requires the ratio of opposite divided by adjacent sides. This is y/x. It's fairly similar to say atan2(y,x) as it's remenicent of atan(y/x).
精彩评论