File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3151,7 +3151,6 @@ class _Base:
3151
3151
value indicating the path is open therefore is not fillable. This
3152
3152
class is not an artist and actual drawing of the fancy arrow is
3153
3153
done by the FancyArrowPatch class.
3154
-
3155
3154
"""
3156
3155
3157
3156
# The derived classes are required to be able to be initialized
@@ -3161,10 +3160,11 @@ class is not an artist and actual drawing of the fancy arrow is
3161
3160
@staticmethod
3162
3161
def ensure_quadratic_bezier (path ):
3163
3162
"""
3164
- Some ArrowStyle class only works with a simple quadratic Bezier
3165
- curve (created with Arc3Connection or Angle3Connector). This static
3166
- method is to check if the provided path is a simple quadratic
3167
- Bezier curve and returns its control points if true.
3163
+ Some ArrowStyle classes only works with a simple quadratic
3164
+ Bezier curve (created with `.ConnectionStyle.Arc3` or
3165
+ `.ConnectionStyle.Angle3`). This static method checks if the
3166
+ provided path is a simple quadratic Bezier curve and returns its
3167
+ control points if true.
3168
3168
"""
3169
3169
segments = list (path .iter_segments ())
3170
3170
if (len (segments ) != 2 or segments [0 ][1 ] != Path .MOVETO or
You can’t perform that action at this time.
0 commit comments