Create obj module for scene objects

This commit is contained in:
Camden Dixie O'Brien
2025-09-23 15:35:26 +01:00
parent 0ea0c1edd2
commit 08f1a2a4dc
5 changed files with 85 additions and 26 deletions

10
include/ray.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef RAY_H
#define RAY_H
#include "vec3.h"
typedef struct {
vec3_t orig, dir;
} ray_t;
#endif