18 lines
435 B
Java
18 lines
435 B
Java
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);
|
|
}
|
|
}
|