Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Math.hpp
1#include <glm/glm.hpp>
2#include <glm/gtx/quaternion.hpp>
3
4namespace Grindstone::Math {
5 using Int = int;
6 using Int2 = glm::tvec2<int, glm::highp>;
7 using Int3 = glm::tvec3<int, glm::highp>;
8 using Int4 = glm::tvec4<int, glm::highp>;
9
10 using Double = double;
11 using Double2 = glm::tvec2<double, glm::highp>;
12 using Double3 = glm::tvec3<double, glm::highp>;
13 using Double4 = glm::tvec4<double, glm::highp>;
14
15 using Float = float;
16 using Float2 = glm::vec2;
17 using Float3 = glm::vec3;
18 using Float4 = glm::vec4;
19
20 using Matrix3 = glm::mat3;
21 using Matrix4 = glm::mat4;
22
23 using Quaternion = glm::quat;
24}
Definition InputManager.cpp:52