mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 10:48:34 +02:00
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* BVH.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: ycontre <ycontre@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/16 21:36:19 by TheRed #+# #+# */
|
|
/* Updated: 2025/01/17 18:59:28 by ycontre ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef RT_BVH__HPP
|
|
# define RT_BVH__HPP
|
|
|
|
# include "RT.hpp"
|
|
|
|
struct GPUTriangle;
|
|
struct GPUObject;
|
|
struct GPUBvh;
|
|
|
|
struct AABB
|
|
{
|
|
glm::vec3 min;
|
|
glm::vec3 max;
|
|
|
|
AABB(glm::vec3 min, glm::vec3 max) : min(min), max(max) {}
|
|
};
|
|
|
|
struct BVHStats {
|
|
int min_triangles;
|
|
int max_triangles;
|
|
float average_triangles;
|
|
};
|
|
|
|
class BVH
|
|
{
|
|
public:
|
|
BVH(std::vector<GPUTriangle> &primitives, int first_primitive, int primitive_count);
|
|
|
|
|
|
void showAABB(Scene *scene);
|
|
|
|
void updateBounds(std::vector <GPUTriangle> &primitives);
|
|
void subdivide(std::vector<GPUTriangle> &primitives);
|
|
|
|
int getSize();
|
|
int getLeaves();
|
|
BVHStats analyzeBVHLeaves(BVH* root);
|
|
|
|
void flatten(std::vector<GPUBvh> &bvhs, int ¤tIndex);
|
|
GPUBvh toGPUBvh();
|
|
|
|
const AABB &getAABB() const;
|
|
std::vector<GPUBvh> getGPUBvhs();
|
|
|
|
|
|
private:
|
|
AABB _aabb;
|
|
|
|
BVH *_left;
|
|
BVH *_right;
|
|
|
|
bool _is_leaf;
|
|
|
|
int _first_primitive;
|
|
int _primitive_count;
|
|
};
|
|
|
|
#endif |