diff --git a/src/Ray.cc b/src/Ray.cc new file mode 100644 index 0000000..4cafd1d --- /dev/null +++ b/src/Ray.cc @@ -0,0 +1,5 @@ +#include "Ray.h" + +Vector3f Ray::getOrigin() const { return origin; } + +Vector3f Ray::getDirection() const { return direction; }