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

Method _has_dashed_edge

lib/matplotlib/patches.py:661–670  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Calls

no outgoing calls

Tested by 1