pyvista.DataObject.copy_structure#

DataObject.copy_structure(dataset: vtkDataSet) None[source]#

Copy the structure (geometry and topology) of the input dataset object.

Parameters:
datasetvtk.vtkDataSet

Dataset to copy the geometry and topology from.

Examples

>>> import pyvista as pv
>>> source = pv.ImageData(dimensions=(10, 10, 5))
>>> target = pv.ImageData()
>>> target.copy_structure(source)
>>> target.plot(show_edges=True)
../../../_images/pyvista-DataObject-copy_structure-1_00_00.png