pyvista.UnstructuredGrid.cast_to_explicit_structured_grid#
- UnstructuredGrid.cast_to_explicit_structured_grid()[source]#
Cast to an explicit structured grid.
- Returns:
pyvista.ExplicitStructuredGrid
An explicit structured grid.
- Raises:
TypeError
If the unstructured grid doesn’t have the
'BLOCK_I'
,'BLOCK_J'
and'BLOCK_K'
cells arrays.
Examples
>>> from pyvista import examples >>> grid = examples.load_explicit_structured() >>> grid.plot(color='w', show_edges=True, show_bounds=True)
>>> grid = grid.hide_cells(range(80, 120)) >>> grid.plot(color='w', show_edges=True, show_bounds=True)
>>> grid = grid.cast_to_unstructured_grid() >>> grid.plot(color='w', show_edges=True, show_bounds=True)
>>> grid = grid.cast_to_explicit_structured_grid() >>> grid.plot(color='w', show_edges=True, show_bounds=True)