From 8251be3e7ec0e381391c951fd4c8f1ab8080bef9 Mon Sep 17 00:00:00 2001 From: Julian T Date: Tue, 12 Jan 2021 18:48:40 +0100 Subject: Reorgranize source file structure --- src/ray.cpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/ray.cpp (limited to 'src/ray.cpp') 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(); -} -- cgit v1.2.3