aboutsummaryrefslogtreecommitdiff
path: root/src/shared/math/math.hh
diff options
context:
space:
mode:
authorNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-12 21:57:46 +1100
committerNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-12 21:57:46 +1100
commite4483eca01b48b943cd0461e24a74ae1a3139ed4 (patch)
treeed58c3c246e3af1af337697695d780aa31f6ad9a /src/shared/math/math.hh
parent1cc08c51eb4b0f95c30c0a98ad1fc5ad3459b2df (diff)
Update to most recent version (old initial commit)
Diffstat (limited to 'src/shared/math/math.hh')
-rw-r--r--src/shared/math/math.hh22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/shared/math/math.hh b/src/shared/math/math.hh
new file mode 100644
index 0000000..9eef88c
--- /dev/null
+++ b/src/shared/math/math.hh
@@ -0,0 +1,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