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

Method intersects_path

lib/matplotlib/path.py:667–674  ·  view source on GitHub ↗

Return whether if this path intersects another given path. If *filled* is True, then this also returns True if one path completely encloses the other (i.e., the paths are treated as filled).

(self, other, filled=True)

Source from the content-addressed store, hash-verified

665 return Bbox.null()
666
667 def intersects_path(self, other, filled=True):
668 """
669 Return whether if this path intersects another given path.
670
671 If *filled* is True, then this also returns True if one path completely
672 encloses the other (i.e., the paths are treated as filled).
673 """
674 return _path.path_intersects_path(self, other, filled)
675
676 def intersects_bbox(self, bbox, filled=True):
677 """

Calls

no outgoing calls