Tweek the stereo settings: allow negative eye separation.

This commit is contained in:
Kester Maddock
2004-10-24 23:50:44 +00:00
parent e398ad2c0e
commit e4d22a8021
3 changed files with 36 additions and 28 deletions

View File

@@ -121,8 +121,6 @@ def setEyeSeparation(eyesep):
Sets the eye separation for stereo mode.
@param eyesep: The distance between the left and right eye.
If eyesep < 0.0, eye separation will be automatically determined from the projection
matrix.
@type eyesep: float
"""
@@ -130,9 +128,6 @@ def getEyeSeparation():
"""
Gets the current eye separation for stereo mode.
If the returned eye separation is < 0.0, the eye separation will be
automatically set on the next frame.
@rtype: float
"""
@@ -140,8 +135,7 @@ def setFocalLength(focallength):
"""
Sets the focal length for stereo mode.
@param focallength: The focal length. If focallength < 0.0, the focal length will
be automatically determined.
@param focallength: The focal length.
@type focallength: float
"""
@@ -149,8 +143,5 @@ def getFocalLength():
"""
Gets the current focal length for stereo mode.
If the returned focal length is < 0.0, the focal length will be
automatically set on the next frame.
@rtype: float
"""