reformat ray and hitrecord

This commit is contained in:
Shuo Feng 2024-03-14 18:43:28 -04:00
parent 08cbf7733f
commit 9e9d7351bd
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1
6 changed files with 25 additions and 25 deletions

View file

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