Set the boilerplate props for artists added to Axes.
(self, a)
| 1244 | return self._axes_locator |
| 1245 | |
| 1246 | def _set_artist_props(self, a): |
| 1247 | """Set the boilerplate props for artists added to Axes.""" |
| 1248 | a.set_figure(self.get_figure(root=False)) |
| 1249 | if not a.is_transform_set(): |
| 1250 | a.set_transform(self.transData) |
| 1251 | |
| 1252 | a.axes = self |
| 1253 | if a.get_mouseover(): |
| 1254 | self._mouseover_set.add(a) |
| 1255 | |
| 1256 | def _gen_axes_patch(self): |
| 1257 | """ |
no test coverage detected