pyvista.RectilinearGrid.meshgrid#
- property RectilinearGrid.meshgrid: tuple[NumpyArray[float], NumpyArray[float], NumpyArray[float]][source]#
Return a meshgrid of numpy arrays for this mesh.
This simply returns a
numpy.meshgrid()
of the coordinates for this mesh inij
indexing. These are a copy of the points of this mesh.- Returns:
tuple
[numpy.ndarray
,numpy.ndarray
,numpy.ndarray
]Tuple of numpy arrays representing the points of this mesh.