added AABB check

This commit is contained in:
2026-03-24 10:20:50 +03:00
parent 04203d46ff
commit d38895e4d7
3 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// Created by Vladislav on 24.03.2026.
//
#pragma once
#include "omath/linear_algebra/vector3.hpp"
namespace omath::primitives
{
template<class Type>
struct Aabb final
{
Vector3<Type> min;
Vector3<Type> max;
};
} // namespace omath::primitives