summaryrefslogtreecommitdiffstats
path: root/thirdparty/thorvg/src/common/tvgBezier.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/thorvg/src/common/tvgBezier.h')
-rw-r--r--thirdparty/thorvg/src/common/tvgBezier.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/thirdparty/thorvg/src/common/tvgBezier.h b/thirdparty/thorvg/src/common/tvgBezier.h
index cb2766c505..80a199258a 100644
--- a/thirdparty/thorvg/src/common/tvgBezier.h
+++ b/thirdparty/thorvg/src/common/tvgBezier.h
@@ -44,6 +44,8 @@ void bezSplitAt(const Bezier& cur, float at, Bezier& left, Bezier& right);
Point bezPointAt(const Bezier& bz, float t);
float bezAngleAt(const Bezier& bz, float t);
+float bezLengthApprox(const Bezier& cur);
+float bezAtApprox(const Bezier& bz, float at, float length);
}
#endif //_TVG_BEZIER_H_