mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
7 lines
157 B
C
7 lines
157 B
C
#include "headers/atan2d2.h"
|
|
|
|
static __inline double _atan2(double y, double x)
|
|
{
|
|
return spu_extract(_atan2d2(spu_promote(y, 0), spu_promote(x, 0)), 0);
|
|
}
|