(self)
| 3734 | self._aspect_ratio_correction = aspect_ratio |
| 3735 | |
| 3736 | def _get_rotation_transform(self): |
| 3737 | aspect_ratio = self.ax._get_aspect_ratio() |
| 3738 | return Affine2D().translate(-self.center[0], -self.center[1]) \ |
| 3739 | .scale(1, aspect_ratio) \ |
| 3740 | .rotate(self._rotation) \ |
| 3741 | .scale(1, 1 / aspect_ratio) \ |
| 3742 | .translate(*self.center) |
| 3743 | |
| 3744 | @property |
| 3745 | def corners(self): |
no test coverage detected