Return the lower and upper z-axis bounds, in increasing order. See Also -------- set_zbound get_zlim, set_zlim invert_zaxis, zaxis_inverted
(self)
| 2140 | """)) |
| 2141 | |
| 2142 | def get_zbound(self): |
| 2143 | """ |
| 2144 | Return the lower and upper z-axis bounds, in increasing order. |
| 2145 | |
| 2146 | See Also |
| 2147 | -------- |
| 2148 | set_zbound |
| 2149 | get_zlim, set_zlim |
| 2150 | invert_zaxis, zaxis_inverted |
| 2151 | """ |
| 2152 | lower, upper = self.get_zlim() |
| 2153 | if lower < upper: |
| 2154 | return lower, upper |
| 2155 | else: |
| 2156 | return upper, lower |
| 2157 | |
| 2158 | def text(self, x, y, z, s, zdir=None, *, axlim_clip=False, **kwargs): |
| 2159 | """ |