Skip to content

Commit da58c47

Browse files
committed
reverse description order to match demo order
1 parent 6f3db9a commit da58c47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/animation.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
"## Animation fundamentals with `matplotlib`\n",
7272
"\n",
7373
"There are two different methods of creating animations with `matplotlib`:\n",
74-
"1. Function animation iteratively modifies data on a pre-existing figure to produce an animation\n",
75-
"2. Artist animations pulls from a list of pre-made [artists](https://matplotlib.org/stable/api/artist_api.html#matplotlib.artist.Artist) to draw in each frame to produce an animation\n",
74+
"1. Artist animations pulls from a list of pre-made [artists](https://matplotlib.org/stable/api/artist_api.html#matplotlib.artist.Artist) to draw in each frame to produce an animation\n",
75+
"2. Function animation iteratively modifies data on a pre-existing figure to produce an animation\n",
7676
"\n",
7777
"Generally, function animation is easier to use, but artist animation can be more flexible for certain applications. We'll cover both methods in this notebook."
7878
]

0 commit comments

Comments
 (0)