blob: 90c0db9311120f5f9431b91345093ec49ce1d65d [file] [log] [blame]
package com.airbnb.lottie.model.content;
import android.graphics.PointF;
import com.airbnb.lottie.LottieDrawable;
import com.airbnb.lottie.animation.content.Content;
import com.airbnb.lottie.animation.content.RectangleContent;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
import com.airbnb.lottie.model.animatable.AnimatablePointValue;
import com.airbnb.lottie.model.animatable.AnimatableValue;
import com.airbnb.lottie.model.layer.BaseLayer;
public class RectangleShape implements ContentModel {
private final String name;
private final AnimatableValue<PointF, PointF> position;
private final AnimatableValue<PointF, PointF> size;
private final AnimatableFloatValue cornerRadius;
private final boolean hidden;
public RectangleShape(String name, AnimatableValue<PointF, PointF> position,
AnimatableValue<PointF, PointF> size, AnimatableFloatValue cornerRadius, boolean hidden) {
this.name = name;
this.position = position;
this.size = size;
this.cornerRadius = cornerRadius;
this.hidden = hidden;
}
public String getName() {
return name;
}
public AnimatableFloatValue getCornerRadius() {
return cornerRadius;
}
public AnimatableValue<PointF, PointF> getSize() {
return size;
}
public AnimatableValue<PointF, PointF> getPosition() {
return position;
}
public boolean isHidden() {
return hidden;
}
@Override public Content toContent(LottieDrawable drawable, BaseLayer layer) {
return new RectangleContent(drawable, layer, this);
}
@Override public String toString() {
return "RectangleShape{position=" + position +
", size=" + size +
'}';
}
}