blob: 3896fefa9b67928fdc2f112c77b3c7039d1f24bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
|