SLCReader#
- class SLCReader(*args, **kwargs)[source]#
SLCReader for .slc files.
Wraps vtkSLCReader.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> from pathlib import Path
>>> filename = examples.download_knee_full(load=False)
>>> Path(filename).name
'vw_knee.slc'
>>> reader = pv.get_reader(filename)
>>> mesh = reader.read()
>>> mesh.plot()