# Examples from pyvista.DataObject.copy_structure
# ===============================================

import pyvista as pv
source = pv.ImageData(dimensions=(10, 10, 5))
target = pv.ImageData()
target.copy_structure(source)
target.plot(show_edges=True)

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

