Files
omath/source/Vector4.cpp
2024-09-03 21:46:32 +03:00

17 lines
174 B
C++

//
// Vector4.cpp
//
#include "omath/Vector4.h"
#include <cmath>
namespace omath
{
float Vector4::Length() const
{
return std::sqrt(LengthSqr());
}
}