Adding model loading and bvh generation

This commit is contained in:
Dynamitos
2025-01-23 17:19:53 +01:00
parent 4566e19526
commit 91bdbe4a09
13 changed files with 135 additions and 28 deletions
+2 -1
View File
@@ -1,11 +1,12 @@
#pragma once
#include "Minimal.h"
#include "scene/AABB.h"
#include <vector>
#include <glm/glm.hpp>
class Model
{
public:
AABB boundingBox;
std::vector<glm::vec3> positions;
std::vector<uint32_t> indices;
};