mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 07:22:01 +00:00
5 lines
127 B
C++
5 lines
127 B
C++
#include "Ray.h"
|
|
|
|
Vector3f Ray::getOrigin() const { return origin; }
|
|
|
|
Vector3f Ray::getDirection() const { return direction; }
|