Return whether this path intersects a given `~.transforms.Bbox`. If *filled* is True, then this also returns True if the path completely encloses the `.Bbox` (i.e., the path is treated as filled). The bounding box is always considered filled.
(self, bbox, filled=True)
| 674 | return _path.path_intersects_path(self, other, filled) |
| 675 | |
| 676 | def intersects_bbox(self, bbox, filled=True): |
| 677 | """ |
| 678 | Return whether this path intersects a given `~.transforms.Bbox`. |
| 679 | |
| 680 | If *filled* is True, then this also returns True if the path completely |
| 681 | encloses the `.Bbox` (i.e., the path is treated as filled). |
| 682 | |
| 683 | The bounding box is always considered filled. |
| 684 | """ |
| 685 | return _path.path_intersects_rectangle( |
| 686 | self, bbox.x0, bbox.y0, bbox.x1, bbox.y1, filled) |
| 687 | |
| 688 | def interpolated(self, steps): |
| 689 | """ |
no outgoing calls
no test coverage detected