(self, framedata, blit)
| 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): |
no test coverage detected