mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
17 lines
174 B
C++
17 lines
174 B
C++
//
|
|
// Vector4.cpp
|
|
//
|
|
|
|
#include "omath/Vector4.h"
|
|
#include <cmath>
|
|
|
|
|
|
namespace omath
|
|
{
|
|
|
|
float Vector4::Length() const
|
|
{
|
|
return std::sqrt(LengthSqr());
|
|
}
|
|
}
|