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)
| 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 | """ |
no outgoing calls