Files
android_translation_layer/src/api-impl/android/view/animation/PathInterpolator.java

20 lines
335 B
Java
Raw Normal View History

2024-02-29 12:33:48 +01:00
package android.view.animation;
import android.graphics.Path;
2024-02-29 12:33:48 +01:00
public class PathInterpolator extends BaseInterpolator {
public PathInterpolator(Path path) {
super();
}
2024-02-29 12:33:48 +01:00
public PathInterpolator(float f1, float f2, float f3, float f4) {
super();
}
@Override
public float getInterpolation(float input) {
return input;
}
}