-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Closed
Milestone
Description
I am not sure that the code at https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/patches.py#L1693 still does what it should do
Code originally went in via 7a82ea8
for theta in thetas:
if inside:
self._path = Path.arc(last_theta, theta, 8)
Patch.draw(self, renderer)
inside = False
else:
inside = True
last_theta = theta
was changed via b7479ef to
for theta in thetas:
if inside:
_path = Path.arc(last_theta, theta, 8)
Patch.draw(self, renderer)
inside = False
else:
inside = True
last_theta = theta
and changed via 1938b44 to
for theta in thetas:
if inside:
Path.arc(last_theta, theta, 8)
Patch.draw(self, renderer)
inside = False
else:
inside = True
last_theta = theta
attn @mdboom
Metadata
Metadata
Assignees
Labels
No labels