Fixed spaces

master
Christophe Riccio ago%!(EXTRA string=11 years)
parent 8cb9328e11
commit 284ba46dae
  1. 5
      glm/gtx/matrix_decompose.inl

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

Loading…
Cancel
Save