mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
7 lines
130 B
C
7 lines
130 B
C
|
#include "headers/sind2.h"
|
||
|
|
||
|
static __inline double _sin(double angle)
|
||
|
{
|
||
|
return spu_extract(_sind2(spu_promote(angle, 0)), 0);
|
||
|
}
|