blob: a12040ae46731d3e0e6b3576289a080cdad477c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __MATH_INC
#define __MATH_INC
#define PI 3.14159265358979323846264
#define TAU (2 * PI)
float pow5(float x)
{
float tmp = x * x;
return (tmp * tmp) * x;
}
#endif // __MATH_INC
|