@@ -920,21 +920,30 @@ def __init__(self, x, y, dx, dy, width=0.001, length_includes_head=False, \
920
920
head_starts_at_zero = False ,** kwargs ):
921
921
"""
922
922
Constructor arguments
923
+ *width*: float (default: 0.001)
924
+ width of full arrow tail
923
925
924
- *length_includes_head*:
925
- * True* if head is counted in calculating the length.
926
+ *length_includes_head*: [True | False] (default: False)
927
+ True if head is to be counted in calculating the length.
926
928
927
- *shape*: ['full', 'left', 'right']
929
+ *head_width*: float or None (default: 3*width)
930
+ total width of the full arrow head
928
931
929
- *overhang*:
930
- distance that the arrow is swept back (0 overhang means
931
- triangular shape).
932
+ *head_length*: float or None (default: 1.5 * head_width)
933
+ length of arrow head
932
934
933
- *head_starts_at_zero*:
934
- If *True*, the head starts being drawn at coordinate 0
935
- instead of ending at coordinate 0.
935
+ *shape*: ['full', 'left', 'right'] (default: 'full')
936
+ draw the left-half, right-half, or full arrow
936
937
937
- Valid kwargs are:
938
+ *overhang*: float (default: 0)
939
+ fraction that the arrow is swept back (0 overhang means
940
+ triangular shape). Can be negative or greater than one.
941
+
942
+ *head_starts_at_zero*: [True | False] (default: False)
943
+ if True, the head starts being drawn at coordinate 0
944
+ instead of ending at coordinate 0.
945
+
946
+ Other valid kwargs (inherited from :class:`Patch`) are:
938
947
%(Patch)s
939
948
940
949
"""
0 commit comments