Merge "Fix direction of matrix inversion" into sc-v2-dev
This commit is contained in:
commit
9c7baac12d
|
@ -316,7 +316,7 @@ public final class TaskViewUtils {
|
||||||
mt[i] = localMt;
|
mt[i] = localMt;
|
||||||
|
|
||||||
Matrix localMti = new Matrix();
|
Matrix localMti = new Matrix();
|
||||||
localMti.invert(localMt);
|
localMt.invert(localMti);
|
||||||
mti[i] = localMti;
|
mti[i] = localMti;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue