mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
18 lines
558 B
Java
18 lines
558 B
Java
package androidx.transition;
|
|
|
|
import android.animation.ObjectAnimator;
|
|
import android.animation.TypeConverter;
|
|
import android.graphics.Path;
|
|
import android.graphics.PointF;
|
|
import android.util.Property;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class ObjectAnimatorUtils {
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static <T> ObjectAnimator ofPointF(T t, Property<T, PointF> property, Path path) {
|
|
return ObjectAnimator.ofObject(t, property, (TypeConverter) null, path);
|
|
}
|
|
|
|
private ObjectAnimatorUtils() {
|
|
}
|
|
}
|