# Examples from pyvista.Plotter.open_gif
# ======================================

# Open a GIF file, setting the frame rate to 8 frames per second and
# reducing the color space to 64.
import pyvista as pv
pl = pv.Plotter()
pl.open_gif('movie.gif', fps=8, palettesize=64)

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code
