aboutsummaryrefslogtreecommitdiff
path: root/src/ray.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ray.hpp')
-rw-r--r--src/ray.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/ray.hpp b/src/ray.hpp
deleted file mode 100644
index 6341d44..0000000
--- a/src/ray.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef RAY_H
-#define RAY_H
-
-#include "vector.hpp"
-
-class Ray {
- public:
- Ray(Vec3d start, Vec3d direction, bool normalize);
- Ray(Vec3d a, Vec3d b);
-
- Vec3d m_start;
- Vec3d m_direction;
-};
-
-#endif