[STYLE] wrong Pthese position

This commit is contained in:
Edouard DUPIN 2014-10-18 08:18:54 +02:00
parent 44ec692fc5
commit 63c9ff74c2

View File

@ -166,8 +166,7 @@ namespace etk {
Vector3D<T>& safeNormalize() {
Vector3D<T> absVec = this->absolute();
int maxIndex = absVec.maxAxis();
if (absVec[maxIndex]>0)
{
if (absVec[maxIndex]>0) {
*this /= absVec[maxIndex];
return *this /= length();
}