Closed TheIceCreamBear closed 2 years ago
The title pretty much says all there is about this issue. Line 1415 of src/org/joml/Matrix2f.java incorrectly calls return sub(other, this) instead of the method appropriate return mulComponentWise(other, this)
return sub(other, this)
return mulComponentWise(other, this)
Link for reference: Matrix2f#L1415
Thanks for reporting!
The title pretty much says all there is about this issue. Line 1415 of src/org/joml/Matrix2f.java incorrectly calls
return sub(other, this)
instead of the method appropriatereturn mulComponentWise(other, this)
Link for reference: Matrix2f#L1415