@@ -97,7 +97,6 @@ def split_de_casteljau(beta, t):
9797 return left_beta , right_beta
9898
9999
100- @cbook ._rename_parameter ("3.1" , "tolerence" , "tolerance" )
101100def find_bezier_t_intersecting_with_closedpath (
102101 bezier_point_at_t , inside_closedpath , t0 = 0. , t1 = 1. , tolerance = 0.01 ):
103102 """
@@ -191,7 +190,6 @@ def point_at_t(self, t):
191190 self ._px @ (((1 - t ) ** self ._orders )[::- 1 ] * t ** self ._orders ))
192191
193192
194- @cbook ._rename_parameter ("3.1" , "tolerence" , "tolerance" )
195193def split_bezier_intersecting_with_closedpath (
196194 bezier , inside_closedpath , tolerance = 0.01 ):
197195 """
@@ -227,7 +225,6 @@ def split_bezier_intersecting_with_closedpath(
227225# matplotlib specific
228226
229227
230- @cbook ._rename_parameter ("3.1" , "tolerence" , "tolerance" )
231228def split_path_inout (path , inside , tolerance = 0.01 , reorder_inout = False ):
232229 """
233230 Divide a path into two segments at the point where ``inside(x, y)`` becomes
@@ -318,7 +315,6 @@ def get_cos_sin(x0, y0, x1, y1):
318315 return dx / d , dy / d
319316
320317
321- @cbook ._rename_parameter ("3.1" , "tolerence" , "tolerance" )
322318def check_if_parallel (dx1 , dy1 , dx2 , dy2 , tolerance = 1.e-5 ):
323319 """
324320 Check if two lines are parallel.
@@ -486,9 +482,9 @@ def make_wedged_bezier2(bezier2, width, w1=1., wm=0.5, w2=0.):
486482
487483def make_path_regular (p ):
488484 """
489- If the :attr:` codes` attribute of `Path` *p* is None, return a copy of *p*
490- with the :attr:` codes` set to (MOVETO, LINETO, LINETO, ..., LINETO);
491- otherwise return *p* itself.
485+ If the `` codes`` attribute of `. Path` *p* is None, return a copy of *p*
486+ with `` codes`` set to (MOVETO, LINETO, LINETO, ..., LINETO); otherwise
487+ return *p* itself.
492488 """
493489 c = p .codes
494490 if c is None :
0 commit comments