Return whether ``x, y`` is in the bounding box, but not on its edge.
(self, x, y)
| 455 | return y0 < y < y1 or y0 > y > y1 |
| 456 | |
| 457 | def fully_contains(self, x, y): |
| 458 | """ |
| 459 | Return whether ``x, y`` is in the bounding box, but not on its edge. |
| 460 | """ |
| 461 | return self.fully_containsx(x) and self.fully_containsy(y) |
| 462 | |
| 463 | def fully_overlaps(self, other): |
| 464 | """ |
no test coverage detected