Convert bounds of the rectangle.
(self)
| 896 | return Path.unit_rectangle() |
| 897 | |
| 898 | def _convert_units(self): |
| 899 | """Convert bounds of the rectangle.""" |
| 900 | x0 = self.convert_xunits(self._x0) |
| 901 | y0 = self.convert_yunits(self._y0) |
| 902 | x1 = self.convert_xunits(self._x0 + self._width) |
| 903 | y1 = self.convert_yunits(self._y0 + self._height) |
| 904 | return x0, y0, x1, y1 |
| 905 | |
| 906 | def get_patch_transform(self): |
| 907 | # Note: This cannot be called until after this has been added to |
no test coverage detected