View Single Post
  #2  
Old 03-29-2010, 08:42 PM
Darkmax Darkmax is offline
Member
 
Join Date: Feb 2010
Posts: 108
mm you can add a new view point in the subwindow and set it to scene 2

Code:
import viz
viz.go()

viz.add('panorama.ive')

#Add a new window.
subWindow = viz.addWindow()
#Set the size and position of the window.
subWindow.setSize(1,.1845)
subWindow.setPosition(0,1)
#Add new viewpoint and set it in scene 2
subView = viz.addView()
subView.setScene(2)
subWindow.viewpoint(subView)
Reply With Quote