From 5bb287425b76aa878c956df4226deabb86b4ad20 Mon Sep 17 00:00:00 2001 From: THoehne <77296181+THoehne@users.noreply.github.com> Date: Tue, 27 Aug 2024 13:26:54 +0200 Subject: [PATCH] Add Plane / Line / ... --- Engine/Source/Runtime/Core/public/Math/Include.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Engine/Source/Runtime/Core/public/Math/Include.h b/Engine/Source/Runtime/Core/public/Math/Include.h index 9c540df..d849d3e 100644 --- a/Engine/Source/Runtime/Core/public/Math/Include.h +++ b/Engine/Source/Runtime/Core/public/Math/Include.h @@ -17,6 +17,9 @@ #include "Core/public/Math/IntVector3.hpp" #include "Core/public/Math/IntVector4.hpp" +#include "Core/public/Math/Point.hpp" +#include "Core/public/Math/IntPoint.hpp" + // --- Matrices ------------------------ @@ -24,6 +27,11 @@ #include "Core/public/Math/Matrix3.hpp" #include "Core/public/Math/Matrix4.hpp" +// --- Other Math ---------------------- + +#include "Core/public/Math/Plane.hpp" +#include "Core/public/Math/Line.hpp" + // --- Misc -----------------