ack/lang/cem/libcc.ansi/core/math/atan2.c
2018-06-23 00:04:14 +02:00

55 lines
868 B
C

/*
* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
/* $Id$ */
#include <math.h>
#include <errno.h>
#include <ack/config.h>
#include "localmath.h"
#if ACKCONF_WANT_FLOAT
double
atan2(double y, double x)
{
double absx, absy, val;
if (x == 0 && y == 0)
{
errno = EDOM;
return 0;
}
absy = y < 0 ? -y : y;
absx = x < 0 ? -x : x;
if (absy - absx == absy)
{
/* x negligible compared to y */
return y < 0 ? -M_PI_2 : M_PI_2;
}
if (absx - absy == absx)
{
/* y negligible compared to x */
val = 0.0;
}
else
val = atan(y / x);
if (x > 0)
{
/* first or fourth quadrant; already correct */
return val;
}
if (y < 0)
{
/* third quadrant */
return val - M_PI;
}
return val + M_PI;
}
#endif