Convert x and y units for a tuple (x, y).
(self, xy)
| 757 | return self.get_path().get_extents(self.get_transform()) |
| 758 | |
| 759 | def _convert_xy_units(self, xy): |
| 760 | """Convert x and y units for a tuple (x, y).""" |
| 761 | x = self.convert_xunits(xy[0]) |
| 762 | y = self.convert_yunits(xy[1]) |
| 763 | return x, y |
| 764 | |
| 765 | |
| 766 | class Shadow(Patch): |
no test coverage detected