Home
last modified time | relevance | path

Searched refs:CubicCurveData (Results 1 – 4 of 4) sorted by relevance

/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DShapeData.java6 import com.airbnb.lottie.model.CubicCurveData;
14 private final List<CubicCurveData> curves;
18 public ShapeData(PointF initialPoint, boolean closed, List<CubicCurveData> curves) { in ShapeData()
43 public List<CubicCurveData> getCurves() { in getCurves()
63 curves.add(new CubicCurveData()); in interpolateBetween()
78 CubicCurveData curve1 = shapeData1.getCurves().get(i); in interpolateBetween()
79 CubicCurveData curve2 = shapeData2.getCurves().get(i); in interpolateBetween()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DShapeDataParser.java5 import com.airbnb.lottie.model.CubicCurveData;
72 return new ShapeData(new PointF(), false, Collections.<CubicCurveData>emptyList()); in parse()
78 List<CubicCurveData> curves = new ArrayList<>(length); in parse()
87 curves.add(new CubicCurveData(shapeCp1, shapeCp2, vertex)); in parse()
99 curves.add(new CubicCurveData(shapeCp1, shapeCp2, vertex)); in parse()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/
DCubicCurveData.java9 public class CubicCurveData { class
14 public CubicCurveData() { in CubicCurveData() method in CubicCurveData
20 public CubicCurveData(PointF controlPoint1, PointF controlPoint2, PointF vertex) { in CubicCurveData() method in CubicCurveData
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/
DMiscUtils.java8 import com.airbnb.lottie.model.CubicCurveData;
27 CubicCurveData curveData = shapeData.getCurves().get(i); in getPathFromData()