mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-07 23:12:00 +00:00
5 lines
123 B
C++
5 lines
123 B
C++
#include "Ray.h"
|
|
|
|
Vector3f Ray::origin() const { return origin_; }
|
|
|
|
Vector3f Ray::direction() const { return direction_; }
|