Return whether *x* is in the open (:attr:`x0`, :attr:`x1`) interval.
(self, x)
| 441 | return ax1 <= bx2 and bx1 <= ax2 and ay1 <= by2 and by1 <= ay2 |
| 442 | |
| 443 | def fully_containsx(self, x): |
| 444 | """ |
| 445 | Return whether *x* is in the open (:attr:`x0`, :attr:`x1`) interval. |
| 446 | """ |
| 447 | x0, x1 = self.intervalx |
| 448 | return x0 < x < x1 or x0 > x > x1 |
| 449 | |
| 450 | def fully_containsy(self, y): |
| 451 | """ |