Releases: davbyr/xAnimate
Releases · davbyr/xAnimate
Version 1.3.0
Two new things in this version:
loop
added as an argument formake_animation()
. Ultimately gets passed toimagio.mimsave()
. Same functionality as argument for that function._try_make_animation()
now contains the bulk of the code, although the user still interacts withmake_animation()
. The point is,make_animation()
now contains a try-except block, so if the animation has any problems, or is interrupted, the temporary file directory is deleted.
Version 1.2.0
Added the new ability to provided multiple datasets and/or data arrays to make_animation()
.
This means that you can pass the inputs as part of a list.
When constructing a frame function, you can now specify multiple arguments, which make_animation()
will pass automatically, in the order they appear in the input list.
Version 1.1.0
- Package has been renamed to xAnimate.
- A default importable
plot()
function has been added, alongside theframes
module.
Version 1 (2023/06/09)
First working version of the package.
Contains the basic functionality:
- make_animate() is the main controlling function. It takes a frame plotting function, creates multiple images and compiled them into an animation.
- Some other functions which make this possible.
- README file including an example of how to use the package.