Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fabab8c

Browse files
committed
Merged revisions 6714-6715 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r6714 | mdboom | 2008-12-29 10:29:52 -0500 (Mon, 29 Dec 2008) | 2 lines Handle path.simplify rcParam in all backends. ........ r6715 | mdboom | 2008-12-29 10:33:18 -0500 (Mon, 29 Dec 2008) | 2 lines Handle path.simplify rcParam in all backends. ........ svn path=/trunk/matplotlib/; revision=6716
1 parent 90c478b commit fabab8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __init__(self, vertices, codes=None):
112112

113113
self.should_simplify = (rcParams['path.simplify'] and
114114
(len(vertices) >= 128 and
115-
(codes is None or np.all(codes <= Path.LINETO))))
115+
(codes is None or np.all(codes <= Path.LINETO))))
116116
self.has_nonfinite = not np.isfinite(vertices).all()
117117
self.codes = codes
118118
self.vertices = vertices

0 commit comments

Comments
 (0)