lottie/vector: added angleAt() api to bezier class.
[platform/core/uifw/lottie-player.git] / src / vector / vbezier.h
index f41e532..12e9923 100644 (file)
@@ -9,6 +9,7 @@ class VBezier {
 public:
     VBezier() = default;
     VPointF     pointAt(float t) const;
+    float       angleAt(float t) const;
     VBezier     onInterval(float t0, float t1) const;
     float       length() const;
     static void coefficients(float t, float &a, float &b, float &c, float &d);