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

Method get_hatch_path

lib/matplotlib/backend_bases.py:969–974  ·  view source on GitHub ↗

Return a `.Path` for the current hatch.

(self, density=6.0)

Source from the content-addressed store, hash-verified

967 return self._hatch
968
969 def get_hatch_path(self, density=6.0):
970 """Return a `.Path` for the current hatch."""
971 hatch = self.get_hatch()
972 if hatch is None:
973 return None
974 return Path.hatch(hatch, density)
975
976 def get_hatch_color(self):
977 """Get the hatch color."""

Callers 6

draw_pathMethod · 0.80
draw_pathMethod · 0.80
draw_pathMethod · 0.80
draw_pathMethod · 0.80
_get_hatchMethod · 0.80
draw_pathMethod · 0.80

Calls 2

get_hatchMethod · 0.95
hatchMethod · 0.80

Tested by

no test coverage detected