View Single Post
  #1  
Old 03-18-2008, 11:23 AM
wouters wouters is offline
Member
 
Join Date: Jan 2008
Location: Salt Lake City, Utah
Posts: 13
Left and Right Eye Stereo

Hi,

I am trying to use two computers to render a simulation with Vizard. Is there any way to use one computer to render the left eye and one computer to render the right eye? Right now if I try to render the simulation this way only half of the screen has an image on it. Here is the code I am using to do this:

viz.ipd(0.06)
viz.go(viz.STEREO | viz.FULLSCREEN | viz.HMD)

viz.pushmask(viz.MASTER)
viz.setscene(2, viz.RIGHT_EYE)
viz.popmask()

viz.pushmask(viz.CLIENT1)
viz.setscene(3, viz.LEFT_EYE)
viz.popmask()
Reply With Quote