_BaseMapper.copy#
- _BaseMapper.copy() _BaseMapper[source]#
Create a copy of this mapper.
- Returns:
pyvista.DataSetMapperA copy of this dataset mapper.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> mapper = pv.DataSetMapper(dataset=pv.Cube())
>>> mapper_copy = mapper.copy()