what-the-bank/sources/o/hWf.java

18 lines
435 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.animation.TimeInterpolator;
/* loaded from: classes2.dex */
public final class hWf implements TimeInterpolator {
private final TimeInterpolator e;
public hWf(TimeInterpolator timeInterpolator) {
this.e = timeInterpolator;
}
@Override // android.animation.TimeInterpolator
public final float getInterpolation(float f) {
return 1.0f - this.e.getInterpolation(f);
}
}