diff options
Diffstat (limited to 'src/math')
| -rw-r--r-- | src/math/mat4.hpp (renamed from src/math/mat4.h) | 2 | ||||
| -rw-r--r-- | src/math/quat.hpp (renamed from src/math/quat.h) | 0 | ||||
| -rw-r--r-- | src/math/tform.hpp (renamed from src/math/tform.h) | 6 | ||||
| -rw-r--r-- | src/math/vector.hpp (renamed from src/math/vector.h) | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/math/mat4.h b/src/math/mat4.hpp index df8f533..dfc5a75 100644 --- a/src/math/mat4.h +++ b/src/math/mat4.hpp @@ -3,7 +3,7 @@ #include <array> #include <cmath> -#include "math/vector.h" +#include "math/vector.hpp" namespace engine::math { diff --git a/src/math/quat.h b/src/math/quat.hpp index 271070a..271070a 100644 --- a/src/math/quat.h +++ b/src/math/quat.hpp diff --git a/src/math/tform.h b/src/math/tform.hpp index 74186f8..cd9301f 100644 --- a/src/math/tform.h +++ b/src/math/tform.hpp @@ -2,9 +2,9 @@ #define MATH_TFORM_H #include <array> -#include "math/vector.h" -#include "math/mat4.h" -#include "math/quat.h" +#include "math/vector.hpp" +#include "math/mat4.hpp" +#include "math/quat.hpp" namespace engine::math { diff --git a/src/math/vector.h b/src/math/vector.hpp index fcfc5bd..a0e58e1 100644 --- a/src/math/vector.h +++ b/src/math/vector.hpp @@ -2,7 +2,7 @@ #define MATH_VECTOR_H #include <cmath> -#include "math/quat.h" +#include "math/quat.hpp" namespace engine::math { |
