mirror of
https://github.com/barkeser2002/Tenet.git
synced 2026-09-25 08:39:55 +03:00
14 lines
327 B
Diff
14 lines
327 B
Diff
--- a/com/mojang/math/Matrix3f.java
|
|
+++ b/com/mojang/math/Matrix3f.java
|
|
@@ -588,4 +_,10 @@
|
|
public Matrix3f m_8183_() {
|
|
return new Matrix3f(this);
|
|
}
|
|
+
|
|
+ public void multiplyBackward(Matrix3f other) {
|
|
+ Matrix3f copy = other.m_8183_();
|
|
+ copy.m_8178_(this);
|
|
+ this.m_8169_(copy);
|
|
+ }
|
|
}
|