%(barbs_doc)s
(self, *args, **kwargs)
| 5941 | @_preprocess_data() |
| 5942 | @_docstring.interpd |
| 5943 | def barbs(self, *args, **kwargs): |
| 5944 | """%(barbs_doc)s""" |
| 5945 | # Make sure units are handled for x and y values |
| 5946 | args = self._quiver_units(args, kwargs) |
| 5947 | b = mquiver.Barbs(self, *args, **kwargs) |
| 5948 | self.add_collection(b) |
| 5949 | return b |
| 5950 | |
| 5951 | # Uses a custom implementation of data-kwarg handling in |
| 5952 | # _process_plot_var_args. |