mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
12 lines
342 B
Java
12 lines
342 B
Java
|
package androidx.constraintlayout.motion.widget;
|
||
|
|
||
|
import android.view.animation.Interpolator;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public abstract class MotionInterpolator implements Interpolator {
|
||
|
@Override // android.animation.TimeInterpolator
|
||
|
public abstract float getInterpolation(float f);
|
||
|
|
||
|
public abstract float getVelocity();
|
||
|
}
|