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

Skip to content

Fix default parameters of FancyArrow #6583

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
Oct 3, 2016
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
Fix default parameters of FancyArrow
Make code consistent with documentation for FancyArrow
  • Loading branch information
alcinos authored Jun 14, 2016
commit 52497c47068b7ee86f86dd07bbad3c8583f730a7
2 changes: 1 addition & 1 deletion lib/matplotlib/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ def __init__(self, x, y, dx, dy, width=0.001, length_includes_head=False,

"""
if head_width is None:
head_width = 20 * width
head_width = 3 * width
if head_length is None:
head_length = 1.5 * head_width

Expand Down