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

Method _draw_next_frame

lib/matplotlib/animation.py:1169–1174  ·  view source on GitHub ↗
(self, framedata, blit)

Source from the content-addressed store, hash-verified

1167 return self.new_frame_seq()
1168
1169 def _draw_next_frame(self, framedata, blit):
1170 # Breaks down the drawing of the next frame into steps of pre- and
1171 # post- draw, as well as the drawing of the frame itself.
1172 self._pre_draw(framedata, blit)
1173 self._draw_frame(framedata)
1174 self._post_draw(framedata, blit)
1175
1176 def _init_draw(self):
1177 # Initial draw to clear the frame. Also used by the blitting code

Callers 2

_stepMethod · 0.95
saveMethod · 0.80

Calls 3

_pre_drawMethod · 0.95
_draw_frameMethod · 0.95
_post_drawMethod · 0.95

Tested by

no test coverage detected