Files
batomorph/include/ray.h

11 lines
101 B
C

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