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)
https://d33wubrfki0l68.cloudfront.net/69d9a369a1df2eceadbd0db6e2b962b28df7b3af/37e7c/_images/pyvista-dataobject-copy_structure-1_00_00.png