Files
batomorph/include/ray.h
2025-09-23 15:35:26 +01:00

11 lines
101 B
C

#ifndef RAY_H
#define RAY_H
#include "vec3.h"
typedef struct {
vec3_t orig, dir;
} ray_t;
#endif