View Single Post
  #1  
Old 05-01-2009, 12:31 PM
Penguin Penguin is offline
Member
 
Join Date: Mar 2009
Posts: 14
stereoscopic bug?

Hi, in the following code example I detected that in the stereoscopic view the red/green offset of the left sphere is greater than of the right one although the distance between the spheres and the head position is the same. Did I miss something or is this a bug?

Code:
import viz
viz.go(viz.ANAGLYPHIC)

viz.translate(viz.HEAD_POS, 0,-viz.get(viz.HEAD_POS)[1],-1)

leftSphere = viz.add('sphere.3ds', parent=viz.HEAD)
leftSphere.setScale(0.02,0.02,0.02)
leftSphere.setPosition(-0.1,0,1)

rightSphere = viz.add('sphere.3ds', parent=viz.WORLD)
rightSphere.setScale(0.02,0.02,0.02)
rightSphere.setPosition(0.1,0,0)
Attached Thumbnails
Click image for larger version

Name:	spheres.png
Views:	806
Size:	29.4 KB
ID:	313  
Reply With Quote