# Examples from pyvista.examples.downloads.download_particles_lethe
# =================================================================

# Download the particles dataset and plot it after generating glyphs.
from pyvista import examples
particles = examples.download_particles_lethe()
particles.plot(
    render_points_as_spheres=True,
    style='points',
    scalars='Velocity',
    background='w',
    scalar_bar_args={'color': 'k'},
    cmap='bwr',
)

# SEE ALSO:
#     Particles Lethe Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#particles-lethe-dataset
#     See this dataset in the Dataset Gallery for more info.

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

