Modules/Math/private/Ray.cpp
2024-11-24 22:41:08 +03:00

9 lines
No EOL
138 B
C++

#include "Ray.hpp"
using namespace tp;
Ray::Ray(const Vec3F& aDir, const Vec3F& aPos) {
this->dir = aDir.unitV();
this->pos = aPos;
}