DataSetFilters.shrink#
- DataSetFilters.shrink(shrink_factor: float = 1.0, progress_bar: bool = False)[source]#
Shrink the individual faces of a mesh.
This filter shrinks the individual faces of a mesh rather than scaling the entire mesh.
- Parameters:
- Returns:
pyvista.DataSetDataset with shrunk faces. Return type matches input.
Examples#
Download Python source code | Download Jupyter notebook
First, plot the original cube.
Now, plot the mesh with shrunk faces.
>>> shrunk = mesh.shrink(0.5)
>>> shrunk.clear_data() # cleans up plot
>>> shrunk.plot(show_edges=True, line_width=5)
Used In#
Docstring Examples
Global Configuration(1 use)download_quadratic_pyramid(1 use)download_tetrahedron(1 use)