Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>atan2</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
atan2

Usage

   #include <math.h>
   double atan2(double y, double x);

   ANSI

Description

   atan2 returns the arc tangent of y/x in the range of -p to p. atan2 uses
   the signs of y and x to determine the quadrant of the return value.

Return Value

   atan2 returns the arc tangent of the input values. If x and y are both 0,
   atan2 sets errno to EDOM and returns 0. Error handling can be modified
   through the function matherr.

See Also

   acos, asin, atan


See Also: acos asin atan

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson