Base: apply clang format

This commit is contained in:
wmayer
2023-11-11 14:09:40 +01:00
committed by WandererFan
parent 985def3416
commit a42d6f815f
3 changed files with 8 additions and 5 deletions

View File

@@ -634,7 +634,12 @@ void Matrix4D::inverseOrthogonal()
void Matrix4D::inverseGauss()
{
double matrix[16];
double inversematrix[16] = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
// clang-format off
double inversematrix[16] = {1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1};
// clang-format on
getGLMatrix(matrix);
Matrix_gauss(matrix, inversematrix);