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/core/ray.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/core/ray.hpp (limited to 'src/core/ray.hpp') diff --git a/src/core/ray.hpp b/src/core/ray.hpp new file mode 100644 index 0000000..6341d44 --- /dev/null +++ b/src/core/ray.hpp @@ -0,0 +1,15 @@ +#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 -- cgit v1.2.3