# 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',
)

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