You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Capstyle and joinstyle of PathPatch and Line2D differ:
c apstyle
joinstyle
Line2D
projecting
round
PathPatch
butt
miter
as can be seen in:
import matplotlib.pyplot as plt
from matplotlib.patches import Path, PathPatch
x = [0, 5, 0]
y = [0, 0, 2]
ax = plt.gca()
ax.axis('equal')
ax.set_xlim(-1, 7)
ax.plot(x, y, lw=20, alpha=0.5, label='Line2D')
ax.add_patch(PathPatch(Path(list(zip(x, y))), fill=False, ec='r', lw=20, label='PathPatch', capstyle='butt'))
ax.legend()
Proposed fix
This is unexpected and must at least be documented.
I'm unsure if we can afford to change the default of PathPatch (if we make a breaking change, it must be on PathPatch, Line2D is too often used and we cannot affort to change that.
Opinions welcome.
The text was updated successfully, but these errors were encountered:
timhoffm
changed the title
Line2D and PathPatch have different defaults for capstyle and drawstyle
Line2D and PathPatch have different defaults for capstyle and joinstyle
Dec 16, 2021
This issue has been marked "inactive" because it has been 365 days since the last comment. If this issue is still present in recent Matplotlib releases, or the feature request is still wanted, please leave a comment and this label will be removed. If there are no updates in another 30 days, this issue will be automatically closed, but you are free to re-open or create a new issue if needed. We value issue reports, and this procedure is meant to help us resurface and prioritize issues that have not been addressed yet, not make them disappear. Thanks for your help!
Describe the issue
Noticed while working on #18579.
Summary
Capstyle and joinstyle of
PathPatch
andLine2D
differ:as can be seen in:
Proposed fix
This is unexpected and must at least be documented.
I'm unsure if we can afford to change the default of
PathPatch
(if we make a breaking change, it must be onPathPatch
,Line2D
is too often used and we cannot affort to change that.Opinions welcome.
The text was updated successfully, but these errors were encountered: