From abf57a55ea6d1b4a0b7f075fc722a06b75968fac Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 1 Sep 2025 01:28:04 +0300 Subject: [PATCH] Updates include paths and removes dependency Updates the include paths in omath.hpp to be more explicit, ensuring correct referencing of header files. Removes unnecessary include of vector3.hpp from vector2.hpp. --- include/omath/linear_algebra/vector2.hpp | 1 - include/omath/omath.hpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/omath/linear_algebra/vector2.hpp b/include/omath/linear_algebra/vector2.hpp index d86153c..7e8ddc8 100644 --- a/include/omath/linear_algebra/vector2.hpp +++ b/include/omath/linear_algebra/vector2.hpp @@ -3,7 +3,6 @@ // #pragma once -#include "vector3.hpp" #include #include #include diff --git a/include/omath/omath.hpp b/include/omath/omath.hpp index 2276798..a867dd1 100644 --- a/include/omath/omath.hpp +++ b/include/omath/omath.hpp @@ -10,8 +10,8 @@ #include "omath/angle.hpp" // Vector classes (in dependency order) -#include "linear_algebra/vector2.hpp" -#include "linear_algebra/vector4.hpp" +#include "omath/linear_algebra/vector2.hpp" +#include "omath/linear_algebra/vector4.hpp" #include "omath/linear_algebra/vector3.hpp" // Matrix classes