11 lines
101 B
C
11 lines
101 B
C
#ifndef RAY_H
|
|
#define RAY_H
|
|
|
|
#include "vec3.h"
|
|
|
|
typedef struct {
|
|
vec3_t orig, dir;
|
|
} ray_t;
|
|
|
|
#endif
|