Skip to content

Commit d636190

Browse files
committed
Make default arrow head width sensible
Currently the default head width is too small to produce a visible arrow head by default, so make it bigger.
1 parent 0c7cdaa commit d636190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ def __init__(self, x, y, dx, dy, width=0.001, length_includes_head=False, \
958958
959959
"""
960960
if head_width is None:
961-
head_width = 3 * width
961+
head_width = 20 * width
962962
if head_length is None:
963963
head_length = 1.5 * head_width
964964

0 commit comments

Comments
 (0)