mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-04 14:07:52 +00:00
Fixed a Matrix3f.invert() bug
This commit is contained in:
parent
d3c4253619
commit
9fa15b12f7
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue