Construct a `Bbox` by translating this one by *tx* and *ty*.
(self, tx, ty)
| 638 | return Bbox(points + [[-w_pad, -h_pad], [w_pad, h_pad]]) |
| 639 | |
| 640 | def translated(self, tx, ty): |
| 641 | """Construct a `Bbox` by translating this one by *tx* and *ty*.""" |
| 642 | return Bbox(self._points + (tx, ty)) |
| 643 | |
| 644 | def corners(self): |
| 645 | """ |
no test coverage detected