summaryrefslogtreecommitdiffstats
path: root/src/math/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/matrix.h')
-rw-r--r--src/math/matrix.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/math/matrix.h b/src/math/matrix.h
index 30f790c..e0cf492 100644
--- a/src/math/matrix.h
+++ b/src/math/matrix.h
@@ -21,17 +21,18 @@
#pragma once
-#include "const.h"
-#include "func.h"
-#include "vector.h"
+
+#include "math/const.h"
+#include "math/func.h"
+#include "math/vector.h"
+
#include <cmath>
#include <cassert>
// Math module namespace
-namespace Math
-{
+namespace Math {
/**
* \struct Matrix math/matrix.h
@@ -459,4 +460,5 @@ inline Math::Vector MatrixVectorMultiply(const Math::Matrix &m, const Math::Vect
return Math::Vector(x, y, z);
}
-}; // namespace Math
+
+} // namespace Math