added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#ifndef BOUNDING_BOX_CLASS
#define BOUNDING_BOX_CLASS
#include<glad/glad.h>
#include<GLFW/glfw3.h>
#include<glm/glm.hpp>
#include<glm/gtc/matrix_transform.hpp>
#include<glm/gtc/type_ptr.hpp>
struct Ray {
glm::vec3 origin;
glm::vec3 direction;
};
struct Triangle {
glm::vec3 a;
glm::vec3 b;
glm::vec3 c;
};
struct BoundingAxis {
float min;
float max;
};
struct BoundingBox {
glm::vec3 min;
glm::vec3 max;
};
#endif