blob: 9bd4c94d74d7f881d053f9f7dae685b559c6223b [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.support.v4.view.animation;
import android.graphics.Path;
import android.view.animation.Interpolator;
/**
* Base implementation for path interpolator compatibility.
*/
class PathInterpolatorCompatBase {
private PathInterpolatorCompatBase() {
// prevent instantiation
}
public static Interpolator create(Path path) {
return new PathInterpolatorDonut(path);
}
public static Interpolator create(float controlX, float controlY) {
return new PathInterpolatorDonut(controlX, controlY);
}
public static Interpolator create(float controlX1, float controlY1,
float controlX2, float controlY2) {
return new PathInterpolatorDonut(controlX1, controlY1, controlX2, controlY2);
}
}