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