diff options
| author | vimene <vincent.menegaux@gmail.com> | 2025-12-10 20:40:42 +0100 |
|---|---|---|
| committer | vimene <vincent.menegaux@gmail.com> | 2025-12-10 20:40:42 +0100 |
| commit | 761604f9e4815e8f4355637ebb46052314cbed86 (patch) | |
| tree | b9cd6dde75ebf5897f8e67835522c6411d6ab7cb /src/math | |
| parent | c666035bc6a51e4dd76daebefffaf8bbc951977c (diff) | |
| download | engine-761604f9e4815e8f4355637ebb46052314cbed86.tar.gz | |
renamed .h to .hpp
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 { |
