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

Method _post_draw

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

Source from the content-addressed store, hash-verified

1190 ' actually make an animation.')
1191
1192 def _post_draw(self, framedata, blit):
1193 # After the frame is rendered, this handles the actual flushing of
1194 # the draw, which can be a direct draw_idle() or make use of the
1195 # blitting.
1196 if blit and self._drawn_artists:
1197 self._blit_draw(self._drawn_artists)
1198 else:
1199 self._fig.canvas.draw_idle()
1200
1201 # The rest of the code in this class is to facilitate easy blitting
1202 def _blit_draw(self, artists):

Callers 3

_draw_next_frameMethod · 0.95
_setup_blitMethod · 0.95
_end_redrawMethod · 0.95

Calls 2

_blit_drawMethod · 0.95
draw_idleMethod · 0.45

Tested by

no test coverage detected