pyvista.Plotter.import_3ds#
- Plotter.import_3ds(filename)[source]#
Import a 3DS file into the plotter.
Added in version 0.44.0.
- Parameters:
- filename
str
|Path
Path to the 3DS file.
- filename
Examples
>>> import pyvista as pv >>> from pyvista import examples >>> download_3ds_file = examples.download_3ds.download_iflamigm() >>> pl = pv.Plotter() >>> pl.import_3ds(download_3ds_file) >>> pl.show()