(self, framedata)
| 1185 | self._blit_clear(self._drawn_artists) |
| 1186 | |
| 1187 | def _draw_frame(self, framedata): |
| 1188 | # Performs actual drawing of the frame. |
| 1189 | raise NotImplementedError('Needs to be implemented by subclasses to' |
| 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 |