Skip to content

Commit 007c4c1

Browse files
authored
Merge pull request #24169 from kwsp/animation_doc
[DOC]: added parent link for `FuncAnimation` and `ArtistAnimation`
2 parents cc75b9b + 0aa73a2 commit 007c4c1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/animation.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,8 @@ def _step(self, *args):
14261426

14271427
class ArtistAnimation(TimedAnimation):
14281428
"""
1429-
Animation using a fixed set of `.Artist` objects.
1429+
`TimedAnimation` subclass that creates an animation by using a fixed
1430+
set of `.Artist` objects.
14301431
14311432
Before creating an instance, all plotting should have taken place
14321433
and the relevant artists saved.
@@ -1502,7 +1503,8 @@ def _draw_frame(self, artists):
15021503

15031504
class FuncAnimation(TimedAnimation):
15041505
"""
1505-
Makes an animation by repeatedly calling a function *func*.
1506+
`TimedAnimation` subclass that makes an animation by repeatedly calling
1507+
a function *func*.
15061508
15071509
.. note::
15081510

0 commit comments

Comments
 (0)