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

Skip to content

Commit 3ab2830

Browse files
committed
Shouldn't simplify paths -- this is vector graphics after all.
1 parent b8b7201 commit 3ab2830

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/backends/backend_svg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def draw_path(self, gc, path, transform, rgbFace=None):
491491
clip = (rgbFace is None and gc.get_hatch_path() is None)
492492
simplify = path.should_simplify and clip
493493
path_data = self._convert_path(
494-
path, trans_and_flip, clip=clip, simplify=simplify)
494+
path, trans_and_flip, clip=clip, simplify=False)
495495

496496
attrib = {}
497497
attrib['style'] = self._get_style(gc, rgbFace)

0 commit comments

Comments
 (0)