13 lines
136 B
C
13 lines
136 B
C
#ifndef Ray_h__
|
|
#define Ray_h__
|
|
|
|
#include "../GLM.h"
|
|
|
|
struct Ray
|
|
{
|
|
glm::vec3 Origin;
|
|
glm::vec3 Direction;
|
|
};
|
|
|
|
#endif // Ray_h__
|