From 219792cc30ede8565b8c41a4dffd1985d3dd09d2 Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Wed, 31 Jul 2024 18:54:22 +0100 Subject: [PATCH] Update mMatrix.h returning identity no longer necessary as fullinverse is its own algo --- Engine/source/math/mMatrix.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Engine/source/math/mMatrix.h b/Engine/source/math/mMatrix.h index 0283502b8..57e6b72ae 100644 --- a/Engine/source/math/mMatrix.h +++ b/Engine/source/math/mMatrix.h @@ -1492,7 +1492,6 @@ inline Matrix& Matrix::inverse() // Early out if pivot is 0, return identity matrix. if (std::abs(augmentedMatrix(i, i)) < pivot_eps) { - this->identity(); return *this; }