Return the `~.transforms.Transform` mapping data coordinates to physical coordinates.
(self)
| 315 | return self.get_patch_transform() + artist.Artist.get_transform(self) |
| 316 | |
| 317 | def get_data_transform(self): |
| 318 | """ |
| 319 | Return the `~.transforms.Transform` mapping data coordinates to |
| 320 | physical coordinates. |
| 321 | """ |
| 322 | return artist.Artist.get_transform(self) |
| 323 | |
| 324 | def get_patch_transform(self): |
| 325 | """ |
no test coverage detected