Files
omath/source/Vector4.cpp
2024-09-03 21:10:28 +03:00

18 lines
195 B
C++

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