aboutsummaryrefslogtreecommitdiff
path: root/src/ray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ray.cpp')
-rw-r--r--src/ray.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ray.cpp b/src/ray.cpp
deleted file mode 100644
index 7bc6201..0000000
--- a/src/ray.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "ray.hpp"
-
-Ray::Ray(Vec3d start, Vec3d direction, bool normalize) {
- m_start = start;
- m_direction = direction;
-
- if (normalize) {
- m_direction.normalize();
- }
-}
-
-Ray::Ray(Vec3d a, Vec3d b) {
- m_start = a;
- m_direction = b - a;
-
- m_direction.normalize();
-}