Return whether this (closed) path completely contains the given path. If *transform* is not ``None``, the path will be transformed before checking for containment.
(self, path, transform=None)
| 613 | return result.astype('bool') |
| 614 | |
| 615 | def contains_path(self, path, transform=None): |
| 616 | """ |
| 617 | Return whether this (closed) path completely contains the given path. |
| 618 | |
| 619 | If *transform* is not ``None``, the path will be transformed before |
| 620 | checking for containment. |
| 621 | """ |
| 622 | if transform is not None: |
| 623 | transform = transform.frozen() |
| 624 | return _path.path_in_path(self, None, path, transform) |
| 625 | |
| 626 | def get_extents(self, transform=None, **kwargs): |
| 627 | """ |