Move AABB class and base it on top of Range

This commit is contained in:
2021-02-21 02:10:11 +01:00
parent 5dd56847d8
commit 5cc0ce9433
4 changed files with 134 additions and 113 deletions

View File

@@ -7,7 +7,7 @@
#pragma once
#include "Base/ICloseable.hpp"
#include "AABB.hpp"
#include "Math/AABB.hpp"
#include <string>
class aiMesh;
@@ -29,7 +29,7 @@ namespace openVulkanoCpp
Vertex* vertices;
void* indices;
VertexIndexType indexType;
AABB aabb;
Math::AABB aabb;
ICloseable* renderGeo = nullptr;
Vertex* GetVertices() const { return vertices; }