WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 10-18-2005, 11:11 AM
Jerry Jerry is offline
Member
 
Join Date: Jun 2004
Posts: 105
SeeReal stereo with separate scenes

Normal Vizard worlds work well in stereo using a SeeReal 3D monitor with the viz.INTERLACE go() option. However a world which uses a different scene in each eye, e.g., the Stereo Album demo, does not work. Is there a way to make the two-scene version appear in stereo on the SeeReal monitor? We need this capability in order to display stereo photos where we have a left and right eye picture.
Reply With Quote
  #2  
Old 10-18-2005, 11:47 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi Jerry,

Can you verify that the following script works. It adds a blue square to scene 1 and a red square to scene 2. Also, what doesn't work about it when you tried?
Code:
import viz
viz.go(viz.INTERLACE|viz.FULLSCREEN)

viz.scene(2,viz.RIGHT_EYE)

ground = viz.add('tut_ground.wrl')
ground.duplicate(2)

quad = viz.add(viz.TEXQUAD)
quad.translate(0,1.8,5)
quad.color(viz.BLUE)

quad2 = viz.add(viz.TEXQUAD,viz.WORLD,2)
quad2.translate(0,1.8,5)
quad2.color(viz.RED)

viz.clearcolor(viz.SKYBLUE)
Reply With Quote
  #3  
Old 10-18-2005, 12:02 PM
Jerry Jerry is offline
Member
 
Join Date: Jun 2004
Posts: 105
Never Mind

It works now. Must be your magic touch.
Thanks, Jerry
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 05:25 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC