impl getters

This commit is contained in:
Shuo Feng 2024-02-18 23:52:03 -05:00
parent 49fd22cbb6
commit 9a8e09207d
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1

5
src/Ray.cc Normal file
View file

@ -0,0 +1,5 @@
#include "Ray.h"
Vector3f Ray::getOrigin() const { return origin; }
Vector3f Ray::getDirection() const { return direction; }