Method
__init__
(self, fig, artists, *args, **kwargs)
Source from the content-addressed store, hash-verified
| 1519 | """ |
| 1520 | |
| 1521 | def __init__(self, fig, artists, *args, **kwargs): |
| 1522 | # Internal list of artists drawn in the most recent frame. |
| 1523 | self._drawn_artists = [] |
| 1524 | |
| 1525 | # Use the list of artists as the framedata, which will be iterated |
| 1526 | # over by the machinery. |
| 1527 | self._framedata = artists |
| 1528 | super().__init__(fig, *args, **kwargs) |
| 1529 | |
| 1530 | def _init_draw(self): |
| 1531 | super()._init_draw() |
Callers
nothing calls this directly
Tested by
no test coverage detected