# Examples from pyvista.Property.render_points_as_spheres
# =======================================================

# Get the default point rendering and visualize it.
import pyvista as pv
prop = pv.Property()
prop.render_points_as_spheres
prop.style = 'points'
prop.point_size = 20
prop.plot()

# Visualize rendering points as spheres.
prop.render_points_as_spheres = True
prop.plot()

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

