Extend rectangle to include point p.
(self, p)
| 17294 | return _rect_area(self.width, self.height, args) |
| 17295 | |
| 17296 | def include_point(self, p): |
| 17297 | """Extend rectangle to include point p.""" |
| 17298 | rect = self.rect.include_point(p) |
| 17299 | return rect.irect |
| 17300 | |
| 17301 | def include_rect(self, r): |
| 17302 | """Extend rectangle to include rectangle r.""" |