josh 00a6331fe9 added Ray class
git-svn-id: svn://anubis/gvsu@365 45c1a28c-8058-47b2-ae61-ca45b979098e
2009-01-16 21:50:20 +00:00

20 lines
239 B
C++

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