atan2: wrong function reference in https://www.arduino.cc/en/Reference/MathHeader it says ``` double atan2 (double __y, // arc tangent of y/x ``` but atan2 has 2 arguments: ``` double atan2 ( double Yaxis, double Xaxis); ```