add_mesh_slice_orthogonal#
- WidgetHelper.add_mesh_slice_orthogonal(mesh, generate_triangles=False, widget_color=None, tubing=False, **kwargs)[source]#
Slice a mesh with three interactive planes.
Adds three interactive plane slicing widgets for orthogonal slicing along each cartesian axis.
- Parameters
- mesh
pyvista.DataSet
The input dataset to add to the scene and threshold.
- generate_trianglesbool,
optional
If this is enabled (
False
by default), the output will be triangles otherwise, the output will be the intersection polygons.- widget_color
color_like
,optional
Color of the widget. Either a string, RGB sequence, or hex color string. For example:
color='white'
color='w'
color=[1.0, 1.0, 1.0]
color='#FFFFFF'
- tubingbool,
optional
When using an implicit plane wiget, this controls whether or not tubing is shown around the plane’s boundaries.
- **kwargs
dict
,optional
All additional keyword arguments are passed to
BasePlotter.add_mesh()
to control how the mesh is displayed.
- mesh
- Returns
list
List of vtk.vtkActor(s).