UnstructuredGrid.cast_to_explicit_structured_grid#
- UnstructuredGrid.cast_to_explicit_structured_grid()[source]#
Cast to an explicit structured grid.
- Returns:
pyvista.ExplicitStructuredGridAn explicit structured grid.
- Raises:
TypeErrorIf the unstructured grid doesn’t have the
'BLOCK_I','BLOCK_J'and'BLOCK_K'cells arrays.
Examples#
Download Python source code | Download Jupyter notebook
>>> 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)