# Examples from pyvista.merge
# ===========================

# Merge two polydata datasets.
import pyvista as pv
sphere = pv.Sphere(center=(0, 0, 1))
cube = pv.Cube()
mesh = pv.merge([cube, sphere])
mesh.plot()

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

