mirror of
https://github.com/Render96/Render96ex.git
synced 2025-01-23 08:12:31 -05:00
13 lines
175 B
C
13 lines
175 B
C
#ifndef MATH_H
|
|
#define MATH_H
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
float sinf(float);
|
|
double sin(double);
|
|
float cosf(float);
|
|
double cos(double);
|
|
|
|
float sqrtf(float);
|
|
|
|
#endif
|