summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-29 10:10:59 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-29 10:10:59 +0100
commit6e2faa538cfacdf29e055b6c7ca6fdce3886b8da (patch)
tree35020851a983623090ab2f86d13685fb215a4af8
parentf70410132b161332e164d013e6a7963c10d823ce (diff)
rename mg/Math.h -> mg/Functions.h
-rw-r--r--bench/dijkstra.cpp2
-rw-r--r--bench/raycast.cpp2
-rw-r--r--editor/tests/path-test.cpp2
-rw-r--r--include/mg/BatchFunctions.h (renamed from include/mg/BatchMath.h)0
-rw-r--r--include/mg/Functions.h (renamed from include/mg/Math.h)0
-rw-r--r--src/chunk-region.cpp2
-rw-r--r--src/raycast.cpp2
-rw-r--r--test/raycast.cpp2
8 files changed, 6 insertions, 6 deletions
diff --git a/bench/dijkstra.cpp b/bench/dijkstra.cpp
index 5e74c75d..c2f43de6 100644
--- a/bench/dijkstra.cpp
+++ b/bench/dijkstra.cpp
@@ -5,7 +5,7 @@
#include "loader/loader.hpp"
#include <benchmark/benchmark.h>
#include <cr/Optional.h>
-#include <mg/Math.h>
+#include <mg/Functions.h>
namespace floormat {
diff --git a/bench/raycast.cpp b/bench/raycast.cpp
index 0f6d617b..63f4ad4a 100644
--- a/bench/raycast.cpp
+++ b/bench/raycast.cpp
@@ -4,7 +4,7 @@
#include "src/wall-atlas.hpp"
#include "loader/loader.hpp"
#include <benchmark/benchmark.h>
-#include <mg/Math.h>
+#include <mg/Functions.h>
namespace floormat {
diff --git a/editor/tests/path-test.cpp b/editor/tests/path-test.cpp
index c94fdc36..9f837128 100644
--- a/editor/tests/path-test.cpp
+++ b/editor/tests/path-test.cpp
@@ -8,7 +8,7 @@
#include "src/critter.hpp"
#include "shaders/shader.hpp"
#include "../imgui-raii.hpp"
-#include <mg/Math.h>
+#include <mg/Functions.h>
#include <mg/Color.h>
namespace floormat::tests {
diff --git a/include/mg/BatchMath.h b/include/mg/BatchFunctions.h
index 0124e922..0124e922 100644
--- a/include/mg/BatchMath.h
+++ b/include/mg/BatchFunctions.h
diff --git a/include/mg/Math.h b/include/mg/Functions.h
index a70d392b..a70d392b 100644
--- a/include/mg/Math.h
+++ b/include/mg/Functions.h
diff --git a/src/chunk-region.cpp b/src/chunk-region.cpp
index 62fee2c4..57d09ab4 100644
--- a/src/chunk-region.cpp
+++ b/src/chunk-region.cpp
@@ -9,7 +9,7 @@
#include <array>
#include <cr/GrowableArray.h>
#include <cr/String.h>
-#include <mg/Math.h>
+#include <mg/Functions.h>
#include <mg/Timeline.h>
namespace floormat {
diff --git a/src/raycast.cpp b/src/raycast.cpp
index bfc41296..06cc416e 100644
--- a/src/raycast.cpp
+++ b/src/raycast.cpp
@@ -8,7 +8,7 @@
#include <bit>
#include <cr/StructuredBindings.h>
#include <cr/GrowableArray.h>
-#include <mg/Math.h>
+#include <mg/Functions.h>
#include <mg/Vector2.h>
#include <mg/Timeline.h>
diff --git a/test/raycast.cpp b/test/raycast.cpp
index 3bf26cdd..5a80f1dc 100644
--- a/test/raycast.cpp
+++ b/test/raycast.cpp
@@ -4,7 +4,7 @@
#include "src/world.hpp"
#include "loader/loader.hpp"
#include "loader/wall-cell.hpp"
-#include <mg/Math.h>
+#include <mg/Functions.h>
namespace floormat {