We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f407ed4 commit 1355b5bCopy full SHA for 1355b5b
src/main/java/org/spout/physics/math/Matrix3x3.java
@@ -236,7 +236,7 @@ public Matrix3x3 getTranspose() {
236
public float getDeterminant() {
237
return mRows[0].get(0) * (mRows[1].get(1) * mRows[2].get(2) - mRows[2].get(1) * mRows[1].get(2))
238
- mRows[0].get(1) * (mRows[1].get(0) * mRows[2].get(2) - mRows[2].get(0) * mRows[1].get(2))
239
- + mRows[0].get(2) * (mRows[1].get(0) * mRows[2].get(1) - mRows[2].get(0) * mRows[1].get(0));
+ + mRows[0].get(2) * (mRows[1].get(0) * mRows[2].get(1) - mRows[2].get(0) * mRows[1].get(1));
240
}
241
242
/**
0 commit comments