diff --git a/svgpathtools/bezier.py b/svgpathtools/bezier.py index 7c82834..5eb9f91 100644 --- a/svgpathtools/bezier.py +++ b/svgpathtools/bezier.py @@ -31,13 +31,9 @@ def bezier_point(p, t): Warning: Be concerned about numerical stability when using this function with high order curves.""" - # begin arc support block ######################## - try: - p.large_arc + # for Arc support + if hasattr(p, 'radius'): return p.point(t) - except: - pass - # end arc support block ########################## deg = len(p) - 1 if deg == 3: