Merge "Fix direction of matrix inversion" into sc-v2-dev

This commit is contained in:
TreeHugger Robot 2021-12-02 23:52:42 +00:00 committed by Android (Google) Code Review
commit 9c7baac12d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }