Return whether the patch edge has a dashed linestyle. A custom linestyle is assumed to be dashed, we do not inspect the ``onoffseq`` directly. See also `~.Patch.set_linestyle`.
(self)
| 659 | return self._hatch_linewidth |
| 660 | |
| 661 | def _has_dashed_edge(self): |
| 662 | """ |
| 663 | Return whether the patch edge has a dashed linestyle. |
| 664 | |
| 665 | A custom linestyle is assumed to be dashed, we do not inspect the |
| 666 | ``onoffseq`` directly. |
| 667 | |
| 668 | See also `~.Patch.set_linestyle`. |
| 669 | """ |
| 670 | return self._linestyle not in ('solid', '-') |
| 671 | |
| 672 | def _draw_paths_with_artist_properties( |
| 673 | self, renderer, draw_path_args_list): |
no outgoing calls