35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
package com.airbnb.lottie.model.animatable;
|
|
|
|
import android.graphics.Path;
|
|
import com.airbnb.lottie.animation.keyframe.ShapeKeyframeAnimation;
|
|
import com.airbnb.lottie.model.content.ShapeData;
|
|
import com.airbnb.lottie.value.Keyframe;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AnimatableShapeValue extends BaseAnimatableValue<ShapeData, Path> {
|
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
|
|
public /* bridge */ /* synthetic */ List getKeyframes() {
|
|
return super.getKeyframes();
|
|
}
|
|
|
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
|
|
public /* bridge */ /* synthetic */ boolean isStatic() {
|
|
return super.isStatic();
|
|
}
|
|
|
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue
|
|
public /* bridge */ /* synthetic */ String toString() {
|
|
return super.toString();
|
|
}
|
|
|
|
public AnimatableShapeValue(List<Keyframe<ShapeData>> list) {
|
|
super((List) list);
|
|
}
|
|
|
|
@Override // com.airbnb.lottie.model.animatable.AnimatableValue
|
|
public ShapeKeyframeAnimation createAnimation() {
|
|
return new ShapeKeyframeAnimation(this.keyframes);
|
|
}
|
|
}
|