Return the `~.transforms.Transform` instance mapping patch coordinates to data coordinates. For example, one may define a patch of a circle which represents a radius of 5 by providing coordinates for a unit circle, and a transform which scales the coordinate
(self)
| 322 | return artist.Artist.get_transform(self) |
| 323 | |
| 324 | def get_patch_transform(self): |
| 325 | """ |
| 326 | Return the `~.transforms.Transform` instance mapping patch coordinates |
| 327 | to data coordinates. |
| 328 | |
| 329 | For example, one may define a patch of a circle which represents a |
| 330 | radius of 5 by providing coordinates for a unit circle, and a |
| 331 | transform which scales the coordinates (the patch coordinate) by 5. |
| 332 | """ |
| 333 | return transforms.IdentityTransform() |
| 334 | |
| 335 | def get_antialiased(self): |
| 336 | """Return whether antialiasing is used for drawing.""" |
no outgoing calls
no test coverage detected