Documentation/Nightly/Developers/Tutorials/ExportToMaya

From Slicer Wiki
Revision as of 13:08, 18 December 2013 by Millerjv (talk | contribs) (Created page with 'Python code to capture the contents of the 3D View and export to an OBJ file called 'tracts' exporter = vtk.vtkOBJExporter() exporter.SetFilePrefix('/tmp/tracts') la…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home < Documentation < Nightly < Developers < Tutorials < ExportToMaya

Python code to capture the contents of the 3D View and export to an OBJ file called 'tracts'

   exporter = vtk.vtkOBJExporter()
   exporter.SetFilePrefix('/tmp/tracts')
   layoutManager = slicer.app.layoutManager()
   view = layoutManager.threeDWidget(0).threeDView()
   exporter.SetRenderWindow(view.renderWindow())
   exporter.Write()
This code created two files 'tracts.obj' and 'tracts.mtl'