wings/include/maths.h

15 lines
218 B
C
Executable File

#ifndef MATHS
#define MATHS
float fcos(unsigned char x);
float fsin(unsigned char x);
#define pi 3.14159265358
#define pi_2 1.570796327
#define pi_4 0.78539981635
float cos(float x);
float sin(float x);
#endif