├── .circleci └── config.yml ├── .codecov.yml ├── .coveragerc ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── animatplot ├── __init__.py ├── _version.py ├── animation.py ├── animations │ ├── __init__.py │ └── vectors.py ├── blocks │ ├── __init__.py │ ├── base.py │ ├── image_like.py │ ├── lineplots.py │ ├── title.py │ ├── update.py │ └── vectors.py ├── timeline.py └── util.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── animatplot-mouse.gif │ └── animatplot.gif │ ├── _templates │ └── autosummary │ │ └── class.rst │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── developer.rst │ ├── gallery.rst │ ├── gallery │ ├── Nuke.ipynb │ ├── efield.gif │ ├── imshow.ipynb │ ├── ising.gif │ ├── logtime.gif │ ├── logtime.ipynb │ ├── nuke.gif │ ├── parametric.gif │ ├── parametric.ipynb │ ├── pcolormesh.gif │ ├── pcolormesh.ipynb │ ├── polarization.gif │ ├── polarization_quiver.ipynb │ ├── quiver.gif │ ├── quiver.ipynb │ ├── scatter.gif │ ├── scatter.ipynb │ ├── sq_well.gif │ ├── sq_well.ipynb │ └── vector_plot.ipynb │ ├── index.rst │ ├── installation.rst │ └── tutorial │ ├── blocks.ipynb │ ├── controls.ipynb │ ├── getting_started.ipynb │ ├── images │ ├── controls.gif │ ├── line1.gif │ ├── line2.gif │ ├── line3.gif │ ├── line4.gif │ ├── line5.gif │ └── multiblock.gif │ ├── jupyter.rst │ └── tutorial.rst ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── baseline_images ├── Animation │ ├── controls0.png │ ├── controls1.png │ ├── controls2.png │ ├── controls3.png │ ├── controls4.png │ └── controls5.png └── Blocks │ ├── Imshow0.png │ ├── Imshow1.png │ ├── Imshow2.png │ ├── Imshow3.png │ ├── Line0.png │ ├── Line1.png │ ├── Line2.png │ ├── Line3.png │ ├── Line4.png │ ├── Line5.png │ ├── Nuke0.png │ ├── Nuke1.png │ ├── Nuke2.png │ ├── Nuke3.png │ ├── Pcolormesh0.png │ ├── Pcolormesh1.png │ ├── Pcolormesh2.png │ ├── Pcolormesh3.png │ ├── Pcolormesh_auto0.png │ ├── Pcolormesh_auto1.png │ ├── Pcolormesh_auto2.png │ ├── Pcolormesh_auto3.png │ ├── Pcolormesh_corner0.png │ ├── Pcolormesh_corner1.png │ ├── Pcolormesh_corner2.png │ ├── Pcolormesh_corner3.png │ ├── Pcolormesh_gouraud0.png │ ├── Pcolormesh_gouraud1.png │ ├── Pcolormesh_nearest0.png │ ├── Pcolormesh_nearest1.png │ ├── Pcolormesh_nearest2.png │ ├── Pcolormesh_nearest3.png │ ├── Quiver0.png │ ├── Quiver1.png │ ├── Quiver2.png │ ├── Quiver3.png │ └── Quiver4.png ├── test_animation.py ├── test_blocks.py ├── test_timeline.py ├── test_util.py └── tools.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/README.md -------------------------------------------------------------------------------- /animatplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/__init__.py -------------------------------------------------------------------------------- /animatplot/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/_version.py -------------------------------------------------------------------------------- /animatplot/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/animation.py -------------------------------------------------------------------------------- /animatplot/animations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/animations/__init__.py -------------------------------------------------------------------------------- /animatplot/animations/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/animations/vectors.py -------------------------------------------------------------------------------- /animatplot/blocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/__init__.py -------------------------------------------------------------------------------- /animatplot/blocks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/base.py -------------------------------------------------------------------------------- /animatplot/blocks/image_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/image_like.py -------------------------------------------------------------------------------- /animatplot/blocks/lineplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/lineplots.py -------------------------------------------------------------------------------- /animatplot/blocks/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/title.py -------------------------------------------------------------------------------- /animatplot/blocks/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/update.py -------------------------------------------------------------------------------- /animatplot/blocks/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/blocks/vectors.py -------------------------------------------------------------------------------- /animatplot/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/timeline.py -------------------------------------------------------------------------------- /animatplot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/animatplot/util.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/animatplot-mouse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/_static/animatplot-mouse.gif -------------------------------------------------------------------------------- /docs/source/_static/animatplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/_static/animatplot.gif -------------------------------------------------------------------------------- /docs/source/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/developer.rst -------------------------------------------------------------------------------- /docs/source/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery.rst -------------------------------------------------------------------------------- /docs/source/gallery/Nuke.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/Nuke.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/efield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/efield.gif -------------------------------------------------------------------------------- /docs/source/gallery/imshow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/imshow.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/ising.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/ising.gif -------------------------------------------------------------------------------- /docs/source/gallery/logtime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/logtime.gif -------------------------------------------------------------------------------- /docs/source/gallery/logtime.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/logtime.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/nuke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/nuke.gif -------------------------------------------------------------------------------- /docs/source/gallery/parametric.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/parametric.gif -------------------------------------------------------------------------------- /docs/source/gallery/parametric.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/parametric.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/pcolormesh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/pcolormesh.gif -------------------------------------------------------------------------------- /docs/source/gallery/pcolormesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/pcolormesh.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/polarization.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/polarization.gif -------------------------------------------------------------------------------- /docs/source/gallery/polarization_quiver.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/polarization_quiver.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/quiver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/quiver.gif -------------------------------------------------------------------------------- /docs/source/gallery/quiver.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/quiver.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/scatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/scatter.gif -------------------------------------------------------------------------------- /docs/source/gallery/scatter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/scatter.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/sq_well.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/sq_well.gif -------------------------------------------------------------------------------- /docs/source/gallery/sq_well.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/sq_well.ipynb -------------------------------------------------------------------------------- /docs/source/gallery/vector_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/gallery/vector_plot.ipynb -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/tutorial/blocks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/blocks.ipynb -------------------------------------------------------------------------------- /docs/source/tutorial/controls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/controls.ipynb -------------------------------------------------------------------------------- /docs/source/tutorial/getting_started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/getting_started.ipynb -------------------------------------------------------------------------------- /docs/source/tutorial/images/controls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/controls.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/line1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/line1.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/line2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/line2.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/line3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/line3.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/line4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/line4.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/line5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/line5.gif -------------------------------------------------------------------------------- /docs/source/tutorial/images/multiblock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/images/multiblock.gif -------------------------------------------------------------------------------- /docs/source/tutorial/jupyter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/jupyter.rst -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/docs/source/tutorial/tutorial.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Animation/controls0.png -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Animation/controls1.png -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Animation/controls2.png -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Animation/controls3.png -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Animation/controls4.png -------------------------------------------------------------------------------- /tests/baseline_images/Animation/controls5.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Imshow0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Imshow0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Imshow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Imshow1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Imshow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Imshow2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Imshow3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Line0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Line1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Line2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Line3.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Line4.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Line5.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Nuke0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Nuke0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Nuke1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Nuke1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Nuke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Nuke2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Nuke3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_auto0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_auto0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_auto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_auto1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_auto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_auto2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_auto3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_corner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_corner0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_corner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_corner1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_corner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_corner2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_corner3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_gouraud0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_gouraud0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_gouraud1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_nearest0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_nearest0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_nearest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_nearest1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_nearest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Pcolormesh_nearest2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Pcolormesh_nearest3.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Quiver0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Quiver0.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Quiver1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Quiver1.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Quiver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Quiver2.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Quiver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/baseline_images/Blocks/Quiver3.png -------------------------------------------------------------------------------- /tests/baseline_images/Blocks/Quiver4.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/test_animation.py -------------------------------------------------------------------------------- /tests/test_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/test_blocks.py -------------------------------------------------------------------------------- /tests/test_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/test_timeline.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-makaro/animatplot/HEAD/tests/tools.py --------------------------------------------------------------------------------