mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 15:03:27 +00:00
18 lines
195 B
C++
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());
|
|
}
|
|
}
|