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 86454fa commit 2e5bbd1Copy full SHA for 2e5bbd1
src/gov/nasa/worldwind/geom/Matrix.java
@@ -2061,7 +2061,7 @@ public final double getDeterminant()
2061
+ this.m24 * (this.m31 * this.m42 - this.m41 * this.m32));
2062
// Columns 1, 2, 3.
2063
result -= this.m14 *
2064
- (this.m21 * (this.m32 * this.m43 - this.m42 - this.m33)
+ (this.m21 * (this.m32 * this.m43 - this.m42 * this.m33)
2065
- this.m22 * (this.m31 * this.m43 - this.m41 * this.m33)
2066
+ this.m23 * (this.m31 * this.m42 - this.m41 * this.m32));
2067
return result;
0 commit comments