renamed headers

This commit is contained in:
Vladislav Alpatov
2025-03-21 04:17:42 +03:00
parent 35658b1f6d
commit b9ac44a901
23 changed files with 18 additions and 18 deletions

View File

@@ -6,7 +6,7 @@
#include <omath/Vector3.hpp> #include <omath/Vector3.hpp>
#include <omath/Mat.hpp> #include <omath/Mat.hpp>
#include <omath/Angle.hpp> #include <omath/Angle.hpp>
#include <omath/ViewAngles.hpp> #include <omath/view_angles.hpp>
namespace omath::iw_engine namespace omath::iw_engine
{ {

View File

@@ -21,4 +21,4 @@ namespace omath::iw_engine
[[nodiscard]] [[nodiscard]]
Mat4x4 CalcPerspectiveProjectionMatrix(float fieldOfView, float aspectRatio, float near, float far); Mat4x4 CalcPerspectiveProjectionMatrix(float fieldOfView, float aspectRatio, float near, float far);
} // namespace omath::source } // namespace omath::iw_engine

View File

@@ -6,7 +6,7 @@
#include <omath/Vector3.hpp> #include <omath/Vector3.hpp>
#include <omath/Mat.hpp> #include <omath/Mat.hpp>
#include <omath/Angle.hpp> #include <omath/Angle.hpp>
#include <omath/ViewAngles.hpp> #include <omath/view_angles.hpp>
namespace omath::opengl_engine namespace omath::opengl_engine
{ {

View File

@@ -6,7 +6,7 @@
#include <omath/Vector3.hpp> #include <omath/Vector3.hpp>
#include <omath/Mat.hpp> #include <omath/Mat.hpp>
#include <omath/Angle.hpp> #include <omath/Angle.hpp>
#include <omath/ViewAngles.hpp> #include <omath/view_angles.hpp>
namespace omath::source_engine namespace omath::source_engine
{ {

View File

@@ -4,7 +4,7 @@
#pragma once #pragma once
#include <vector> #include <vector>
#include "NavigationMesh.hpp" #include "navigation_mesh.hpp"
#include "omath/Vector3.hpp" #include "omath/Vector3.hpp"
namespace omath::pathfinding namespace omath::pathfinding

View File

@@ -2,7 +2,7 @@
// Created by Vlad on 2/23/2025. // Created by Vlad on 2/23/2025.
// //
#pragma once #pragma once
#include "ProjPredEngine.hpp" #include "proj_pred_engine.hpp"
namespace omath::projectile_prediction namespace omath::projectile_prediction
{ {

View File

@@ -6,7 +6,7 @@
#include <optional> #include <optional>
#include "omath/Vector3.hpp" #include "omath/Vector3.hpp"
#include "omath/projectile_prediction/ProjPredEngine.hpp" #include "omath/projectile_prediction/proj_pred_engine.hpp"
#include "omath/projectile_prediction/Projectile.hpp" #include "omath/projectile_prediction/Projectile.hpp"
#include "omath/projectile_prediction/Target.hpp" #include "omath/projectile_prediction/Target.hpp"

View File

@@ -7,7 +7,7 @@
#include <expected> #include <expected>
#include <omath/Mat.hpp> #include <omath/Mat.hpp>
#include <omath/Vector3.hpp> #include <omath/Vector3.hpp>
#include "ErrorCodes.hpp" #include "error_codes.hpp"
#include <omath/Angle.hpp> #include <omath/Angle.hpp>
#include <type_traits> #include <type_traits>

View File

@@ -1,7 +1,7 @@
// //
// Created by Orange on 11/13/2024. // Created by Orange on 11/13/2024.
// //
#include "omath/collision/LineTracer.hpp" #include "omath/collision/line_tracer.hpp"
namespace omath::collision namespace omath::collision
{ {

View File

@@ -1,7 +1,7 @@
// //
// Created by Vlad on 28.07.2024. // Created by Vlad on 28.07.2024.
// //
#include "omath/pathfinding/Astar.hpp" #include "omath/pathfinding/a_star.hpp"
#include <algorithm> #include <algorithm>
#include <optional> #include <optional>

View File

@@ -1,7 +1,7 @@
// //
// Created by Vlad on 28.07.2024. // Created by Vlad on 28.07.2024.
// //
#include "omath/pathfinding/NavigationMesh.hpp" #include "omath/pathfinding/navigation_mesh.hpp"
#include <stdexcept> #include <stdexcept>
#include <algorithm> #include <algorithm>

View File

@@ -1,7 +1,7 @@
// //
// Created by Vlad on 2/23/2025. // Created by Vlad on 2/23/2025.
// //
#include "omath/projectile_prediction/ProjPredEngine.hpp" #include "omath/projectile_prediction/proj_pred_engine.hpp"
namespace omath::projectile_prediction namespace omath::projectile_prediction

View File

@@ -1,7 +1,7 @@
// //
// Created by Vlad on 2/23/2025. // Created by Vlad on 2/23/2025.
// //
#include "omath/projectile_prediction/ProjPredEngineAVX2.hpp" #include "omath/projectile_prediction/proj_pred_engine_avx2.hpp"
#include "source_location" #include "source_location"
namespace omath::projectile_prediction namespace omath::projectile_prediction

View File

@@ -1,4 +1,4 @@
#include "omath/projectile_prediction/ProjPredEngineLegacy.hpp" #include "omath/projectile_prediction/proj_pred_engine_legacy.hpp"
#include <cmath> #include <cmath>
#include <omath/Angles.hpp> #include <omath/Angles.hpp>

View File

@@ -2,7 +2,7 @@
// Created by Vlad on 18.08.2024. // Created by Vlad on 18.08.2024.
// //
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <omath/pathfinding/Astar.hpp> #include <omath/pathfinding/a_star.hpp>
TEST(UnitTestAstar, FindingRightPath) TEST(UnitTestAstar, FindingRightPath)

View File

@@ -1,5 +1,5 @@
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "omath/collision/LineTracer.hpp" #include "omath/collision/line_tracer.hpp"
#include "omath/Triangle.hpp" #include "omath/Triangle.hpp"
#include "omath/Vector3.hpp" #include "omath/Vector3.hpp"

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <omath/projectile_prediction/ProjPredEngineLegacy.hpp> #include <omath/projectile_prediction/proj_pred_engine_legacy.hpp>
TEST(UnitTestPrediction, PredictionTest) TEST(UnitTestPrediction, PredictionTest)
{ {

View File

@@ -1,4 +1,4 @@
// //
// Created by Orange on 11/30/2024. // Created by Orange on 11/30/2024.
// //
#include <omath/ViewAngles.hpp> #include <omath/view_angles.hpp>