Files
batomorph/include/ray.h
2025-09-22 19:49:13 +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