Fixed a Matrix3f.invert() bug

This commit is contained in:
Elias Naur 2003-08-13 17:27:18 +00:00
parent d3c4253619
commit 9fa15b12f7
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ public class Matrix3f extends Matrix implements Serializable {
float determinant_inv = 1f/determinant;
// get the conjugate matrix
float t00 = m11 * m22 - m12* m22;
float t00 = m11 * m22 - m12* m21;
float t01 = - m10 * m22 + m12 *m20;
float t02 = m10 * m21 - m11 * m20;
float t10 = - m01 * m22 + m02 * m21;