diff --git a/etk/math/Vector3D.h b/etk/math/Vector3D.h index a999dd3..5f153c6 100644 --- a/etk/math/Vector3D.h +++ b/etk/math/Vector3D.h @@ -166,8 +166,7 @@ namespace etk { Vector3D& safeNormalize() { Vector3D absVec = this->absolute(); int maxIndex = absVec.maxAxis(); - if (absVec[maxIndex]>0) - { + if (absVec[maxIndex]>0) { *this /= absVec[maxIndex]; return *this /= length(); }