#ifndef _RAY_RAY_H
#define _RAY_RAY_H

#include "ray_3f.h"

typedef struct ray_ray_t {
	ray_3f_t	origin;
	ray_3f_t	direction;
} ray_ray_t;

#endif