For artists in an Axes, if the zaxis has units support, convert *z* using zaxis unit type
(self, z)
| 226 | self.stale = True |
| 227 | |
| 228 | def convert_zunits(self, z): |
| 229 | """ |
| 230 | For artists in an Axes, if the zaxis has units support, |
| 231 | convert *z* using zaxis unit type |
| 232 | """ |
| 233 | return self.zaxis.convert_units(z) |
| 234 | |
| 235 | def set_top_view(self): |
| 236 | # this happens to be the right view for the viewing coordinates |
nothing calls this directly
no test coverage detected