MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / get_zbound

Method get_zbound

lib/mpl_toolkits/mplot3d/axes3d.py:2142–2156  ·  view source on GitHub ↗

Return the lower and upper z-axis bounds, in increasing order. See Also -------- set_zbound get_zlim, set_zlim invert_zaxis, zaxis_inverted

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 3

_get_coord_infoMethod · 0.80
draw_gridMethod · 0.80
test_inverted_zaxisFunction · 0.80

Calls 1

get_zlimMethod · 0.95

Tested by 1

test_inverted_zaxisFunction · 0.64