From 8e836a6d2dd7c23ee59b639e1508f9dcd05c559e Mon Sep 17 00:00:00 2001 From: Orange Date: Tue, 3 Sep 2024 21:36:29 +0300 Subject: [PATCH] fixed naming --- include/omath/{angles.h => Angles.h} | 0 source/Matrix.cpp | 2 +- source/Vector3.cpp | 2 +- source/prediction/Engine.cpp | 2 +- source/projection/Camera.cpp | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename include/omath/{angles.h => Angles.h} (100%) diff --git a/include/omath/angles.h b/include/omath/Angles.h similarity index 100% rename from include/omath/angles.h rename to include/omath/Angles.h diff --git a/source/Matrix.cpp b/source/Matrix.cpp index 37a5742..0545490 100644 --- a/source/Matrix.cpp +++ b/source/Matrix.cpp @@ -1,6 +1,6 @@ #include "omath/Matrix.h" #include "omath/Vector3.h" -#include "omath/angles.h" +#include "omath/Angles.h" #include diff --git a/source/Vector3.cpp b/source/Vector3.cpp index 0dd9be0..b74ef6e 100644 --- a/source/Vector3.cpp +++ b/source/Vector3.cpp @@ -4,7 +4,7 @@ #include #include -#include +#include namespace omath { diff --git a/source/prediction/Engine.cpp b/source/prediction/Engine.cpp index b6d7e5d..47d5ea5 100644 --- a/source/prediction/Engine.cpp +++ b/source/prediction/Engine.cpp @@ -5,7 +5,7 @@ #include "omath/prediction/Engine.h" #include -#include +#include namespace omath::prediction diff --git a/source/projection/Camera.cpp b/source/projection/Camera.cpp index 35c79df..99e2c11 100644 --- a/source/projection/Camera.cpp +++ b/source/projection/Camera.cpp @@ -5,7 +5,7 @@ #include -#include "omath/angles.h" +#include "omath/Angles.h" namespace omath::projection