download_tri_quadratic_hexahedron#
- download_tri_quadratic_hexahedron(load: bool = True) UnstructuredGrid | str[source]#
Download tri quadratic hexahedron dataset.
- Parameters:
- Returns:
- output
pyvista.UnstructuredGrid|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> dataset = examples.download_tri_quadratic_hexahedron()
>>> dataset.plot()
Show non-linear subdivision.
>>> surf = dataset.extract_surface(algorithm=None, nonlinear_subdivision=5)
>>> surf.plot(smooth_shading=True)
See also
- Tri Quadratic Hexahedron Dataset
See this dataset in the Dataset Gallery for more info.