8000 Fix joinstyles example by timhoffm · Pull Request #13911 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix joinstyles example #13911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions examples/lines_bars_and_markers/joinstyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,15 @@
`matplotlib.collections` as well as some functions that create these, e.g.
`~matplotlib.pyplot.plot`.

"""

#############################################################################
#
# Join styles
# """""""""""
#
# Join styles define how the connection between two line segments is drawn.
#
# See the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle``
# parameters.
Join styles
===========

Join styles define how the connection between two line segments is drawn.

See the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle``
parameters.
"""

import numpy as np
import matplotlib.pyplot as plt
Expand Down Expand Up @@ -54,7 +52,7 @@ def plot_angle(ax, x, y, angle, style):
#############################################################################
#
# Cap styles
# """"""""""
# ==========
#
# Cap styles define how the the end of a line is drawn.
#
Expand Down
0