(event)
| 313 | |
| 314 | # bootstrap after the first draw |
| 315 | def start_anim(event): |
| 316 | canvas.mpl_disconnect(start_anim.cid) |
| 317 | |
| 318 | start_anim.timer.add_callback(animation.draw) |
| 319 | start_anim.timer.start() |
| 320 | canvas.mpl_connect('draw_event', on_redraw) |
| 321 | |
| 322 | |
| 323 | start_anim.cid = canvas.mpl_connect('draw_event', start_anim) |
nothing calls this directly
no test coverage detected
searching dependent graphs…