Return the 3D z-axis view limits. Returns ------- left, right : (float, float) The current z-axis limits in data coordinates. See Also -------- set_zlim set_zbound, get_zbound invert_zaxis, zaxis_inverted
(self)
| 1105 | return tuple(self.xy_viewLim.intervaly) |
| 1106 | |
| 1107 | def get_zlim(self): |
| 1108 | """ |
| 1109 | Return the 3D z-axis view limits. |
| 1110 | |
| 1111 | Returns |
| 1112 | ------- |
| 1113 | left, right : (float, float) |
| 1114 | The current z-axis limits in data coordinates. |
| 1115 | |
| 1116 | See Also |
| 1117 | -------- |
| 1118 | set_zlim |
| 1119 | set_zbound, get_zbound |
| 1120 | invert_zaxis, zaxis_inverted |
| 1121 | |
| 1122 | Notes |
| 1123 | ----- |
| 1124 | The z-axis may be inverted, in which case the *left* value will |
| 1125 | be greater than the *right* value. |
| 1126 | """ |
| 1127 | return tuple(self.zz_viewLim.intervalx) |
| 1128 | |
| 1129 | get_zscale = _axis_method_wrapper("zaxis", "get_scale") |
| 1130 |
no outgoing calls