pyvista.StructuredGrid.hide_points#

StructuredGrid.hide_points(ind: ndarray[Any, dtype[bool_]] | Sequence[bool] | ndarray[Any, dtype[integer]] | Sequence[int]) None[source]#

Hide points without deleting them.

Hides points by setting the ghost_points array to HIDDEN_CELL.

Parameters:
indBoolVector | IntVector

Vector of point indices to be hidden. The vector can also be a boolean array of the same size as the number of points.

Examples

Hide part of the middle of a structured surface.

>>> import pyvista as pv
>>> import numpy as np
>>> x = np.arange(-10, 10, 0.25)
>>> y = np.arange(-10, 10, 0.25)
>>> z = 0
>>> x, y, z = np.meshgrid(x, y, z)
>>> grid = pv.StructuredGrid(x, y, z)
>>> grid.hide_points(range(80 * 30, 80 * 50))
>>> grid.plot(color=True, show_edges=True)
../../../_images/pyvista-StructuredGrid-hide_points-1_00_00.png