Skip to content

Commit abf57a5

Browse files
committed
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.
1 parent 463532b commit abf57a5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

include/omath/linear_algebra/vector2.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//
44

55
#pragma once
6-
#include "vector3.hpp"
76
#include <cmath>
87
#include <format>
98
#include <tuple>

include/omath/omath.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#include "omath/angle.hpp"
1111

1212
// Vector classes (in dependency order)
13-
#include "linear_algebra/vector2.hpp"
14-
#include "linear_algebra/vector4.hpp"
13+
#include "omath/linear_algebra/vector2.hpp"
14+
#include "omath/linear_algebra/vector4.hpp"
1515
#include "omath/linear_algebra/vector3.hpp"
1616

1717
// Matrix classes

0 commit comments

Comments
 (0)