18 lines
482 B
Java
18 lines
482 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: classes.dex */
|
|
class ObjectAnimatorUtils {
|
|
static <T> ObjectAnimator ofPointF(T t, Property<T, PointF> property, Path path) {
|
|
return ObjectAnimator.ofObject(t, property, (TypeConverter) null, path);
|
|
}
|
|
|
|
private ObjectAnimatorUtils() {
|
|
}
|
|
}
|