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

Method get_axis_position

lib/mpl_toolkits/mplot3d/axes3d.py:515–520  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

513 super().draw(renderer)
514
515 def get_axis_position(self):
516 tc = self._transformed_cube(self.get_w_lims())
517 xhigh = tc[1][2] > tc[2][2]
518 yhigh = tc[3][2] > tc[2][2]
519 zhigh = tc[0][2] > tc[2][2]
520 return xhigh, yhigh, zhigh
521
522 def update_datalim(self, xys, **kwargs):
523 """

Callers 1

test_get_axis_positionFunction · 0.80

Calls 2

_transformed_cubeMethod · 0.95
get_w_limsMethod · 0.95

Tested by 1

test_get_axis_positionFunction · 0.64