aboutsummaryrefslogtreecommitdiff
path: root/src/shared/math/math.hh
blob: 9eef88c9bd05ff762e4345664f227f9608301564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef SHARED_MATH_MATH_HH_
#define SHARED_MATH_MATH_HH_

#include <algorithm>
#include <cmath>

#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>

#include "shared/math/angles.hh"
#include "shared/math/coords.hh"

namespace shared {
namespace math {

// Convenience include, might include others later too.

} // namespace math
} // namespace shared

#endif