Fixed spaces

This commit is contained in:
Christophe Riccio 2014-10-12 02:32:04 +02:00
parent 8cb9328e11
commit 284ba46dae

View File

@ -68,8 +68,8 @@ namespace glm
if(LocalMatrix[3][3] == static_cast<T>(0)) if(LocalMatrix[3][3] == static_cast<T>(0))
return false; return false;
for(length_t i = 0; i < 4; i++) for(length_t i = 0; i < 4; ++i)
for(length_t j = 0; j < 4; j++) for(length_t j = 0; j < 4; ++j)
LocalMatrix[i][j] /= LocalMatrix[3][3]; LocalMatrix[i][j] /= LocalMatrix[3][3];
// perspectiveMatrix is used to solve for perspective, but it also provides // perspectiveMatrix is used to solve for perspective, but it also provides
@ -222,6 +222,5 @@ namespace glm
Orientation.w = w; Orientation.w = w;
return true; return true;
} }
}//namespace glm }//namespace glm