blob: 8fd712bad711fbbfa6ced138efcb173dcb97b641 [file] [log] [blame]
package com.airbnb.lottie;
import org.json.JSONException;
import org.json.JSONObject;
class ShapeTrimPath {
private final AnimatableFloatValue start;
private final AnimatableFloatValue end;
private final AnimatableFloatValue offset;
ShapeTrimPath(JSONObject json, int frameRate, LottieComposition composition) {
try {
start = new AnimatableFloatValue(json.getJSONObject("s"), frameRate, composition, false);
end = new AnimatableFloatValue(json.getJSONObject("e"), frameRate, composition, false);
offset = new AnimatableFloatValue(json.getJSONObject("o"), frameRate, composition, false);
} catch (JSONException e) {
throw new IllegalArgumentException("Unable to parse trim path " + json, e);
}
}
AnimatableFloatValue getEnd() {
return end;
}
AnimatableFloatValue getStart() {
return start;
}
AnimatableFloatValue getOffset() {
return offset;
}
@Override public String toString() {
return "Trim Path: {start: " + start + ", end: " + end + ", offset: " + offset + "}";
}
}