27 lines
826 B
Java
27 lines
826 B
Java
package o;
|
|
|
|
import android.animation.TypeEvaluator;
|
|
import android.graphics.Matrix;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class Nzf implements TypeEvaluator<Matrix> {
|
|
private final float[] a = new float[9];
|
|
private final float[] c = new float[9];
|
|
private final Matrix d = new Matrix();
|
|
|
|
@Override // android.animation.TypeEvaluator
|
|
/* renamed from: JB_, reason: merged with bridge method [inline-methods] */
|
|
public Matrix evaluate(float f, Matrix matrix, Matrix matrix2) {
|
|
matrix.getValues(this.a);
|
|
matrix2.getValues(this.c);
|
|
for (int i = 0; i < 9; i++) {
|
|
float[] fArr = this.c;
|
|
float f2 = fArr[i];
|
|
float f3 = this.a[i];
|
|
fArr[i] = f3 + ((f2 - f3) * f);
|
|
}
|
|
this.d.setValues(this.c);
|
|
return this.d;
|
|
}
|
|
}
|