#include "Ray.h" Ray::Ray() { } Ray::Ray(const Vector & origin, const Vector & direction) { m_origin = origin; m_direction = direction; }