Skip to content

Commit 9e71fc3

Browse files
committed
DOC: Make animation continuous
This changes the phase such that the start and end images are the same. This is a bit nicer for the animation thumbnails https://matplotlib.org/devdocs/gallery/index.html#animation. They are shown in an endless loop and if start and end images are different, we get a discontiguous jump when the animation is repeated. With this changes, the animation flow is contiguous.
1 parent 3c615b5 commit 9e71fc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/animation/dynamic_image.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def f(x, y):
2323
# each frame
2424
ims = []
2525
for i in range(60):
26-
x += np.pi / 15.
27-
y += np.pi / 20.
26+
x += np.pi / 15
27+
y += np.pi / 30
2828
im = ax.imshow(f(x, y), animated=True)
2929
if i == 0:
3030
ax.imshow(f(x, y)) # show an initial one first

0 commit comments

Comments
 (0)