#ifndef RAY_H #define RAY_H RAY_H #include "Vector.h" class Ray { public: Ray(); Ray(const Vector & origin, const Vector & direction); Vector getOrigin() const { return m_origin; } Vector getDirection() const { return m_direction; } private: Vector m_origin; Vector m_direction; }; #endif