diff options
Diffstat (limited to 'include/rodeo/math.h')
| -rw-r--r-- | include/rodeo/math.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/rodeo/math.h b/include/rodeo/math.h new file mode 100644 index 0000000..3896fef --- /dev/null +++ b/include/rodeo/math.h @@ -0,0 +1,17 @@ +#pragma once + +// --- internal --- +// public +#include "rodeo/math_t.h" +#include "rodeo/math/vec2.h" +#include "rodeo/math/vec3.h" +#include "rodeo/math/mat4.h" +#include "rodeo/math/rng.h" + +#define mrodeo_math_pi 3.1415927410125732421875f + +float +rodeo_math_radians_to_turns(float radians); + +float +rodeo_math_turns_to_radians(float turns); |
