Fix includes

This commit is contained in:
2024-12-11 01:34:38 -05:00
parent 1e3e2f42f2
commit b24328488b
2 changed files with 4 additions and 1 deletions

View File

@@ -17,7 +17,7 @@
// Transcribed from here: explicit form and derivative
// https://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B%C3%A9zier_curves
#include "J3ML/LinearAlgebra/Vector2.hpp"
#include <J3ML/LinearAlgebra/Vector2.hpp>
namespace J3ML::Algorithm
{

View File

@@ -28,6 +28,9 @@ void AABB2DTransformAsAABB2D(AABB2D& aabb, Matrix& m);
namespace J3ML::Geometry
{
using LinearAlgebra::Vector2;
// TODO: Integer AABB2D for even leaner box computation.
// CaveGame AABB
class AABB2D : public Shape2D
{