MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / quiver

Method quiver

lib/matplotlib/axes/_axes.py:5932–5938  ·  view source on GitHub ↗

%(quiver_doc)s

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

5930 @_preprocess_data()
5931 @_docstring.interpd
5932 def quiver(self, *args, **kwargs):
5933 """%(quiver_doc)s"""
5934 # Make sure units are handled for x and y values
5935 args = self._quiver_units(args, kwargs)
5936 q = mquiver.Quiver(self, *args, **kwargs)
5937 self.add_collection(q)
5938 return q
5939
5940 # args can be some combination of X, Y, U, V, C and all should be replaced
5941 @_preprocess_data()

Callers 15

quiverFunction · 0.45
draw_quiverFunction · 0.45
test_quiver_arg_sizesFunction · 0.45
test_no_warningsFunction · 0.45
test_zero_headlengthFunction · 0.45
test_quiver_singleFunction · 0.45
test_quiver_copyFunction · 0.45
test_quiver_key_pivotFunction · 0.45
test_quiver_key_xyFunction · 0.45
test_angles_and_scaleFunction · 0.45

Calls 2

_quiver_unitsMethod · 0.95
add_collectionMethod · 0.80

Tested by 15

draw_quiverFunction · 0.36
test_quiver_arg_sizesFunction · 0.36
test_no_warningsFunction · 0.36
test_zero_headlengthFunction · 0.36
test_quiver_singleFunction · 0.36
test_quiver_copyFunction · 0.36
test_quiver_key_pivotFunction · 0.36
test_quiver_key_xyFunction · 0.36
test_angles_and_scaleFunction · 0.36
test_quiver_xyFunction · 0.36