Skip to content
Snippets Groups Projects
Make_png_old.py 287 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python
    import mayavi
    import vtk
    
    v1=mayavi.mayavi()
    #v.root.geometry("1270x824")
    v1.root.geometry("1046x656")
    v1.root.update()
    print v1.renwin.tkwidget.winfo_width()
    print v1.renwin.tkwidget.winfo_height()
    v1.load_visualization('junk.mv')
    v1.renwin.save_png('./junk.png')