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

Method get_minor_ticks

lib/mpl_toolkits/mplot3d/axis3d.py:181–187  ·  view source on GitHub ↗
(self, numticks=None)

Source from the content-addressed store, hash-verified

179 return ticks
180
181 def get_minor_ticks(self, numticks=None):
182 ticks = super().get_minor_ticks(numticks)
183 for t in ticks:
184 for obj in [
185 t.tick1line, t.tick2line, t.gridline, t.label1, t.label2]:
186 obj.set_transform(self.axes.transData)
187 return ticks
188
189 def set_ticks_position(self, position):
190 """

Callers 1

get_tightbboxMethod · 0.95

Calls 1

set_transformMethod · 0.45

Tested by

no test coverage detected