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.
This commit is contained in:
2025-09-01 01:28:04 +03:00
parent 1af9eccad9
commit 55c7922b24
2 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,6 @@
//
#pragma once
#include "vector3.hpp"
#include <cmath>
#include <format>
#include <tuple>

View File

@@ -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