1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * @author alteredq / http://alteredqualia.com/
- * @authod mrdoob / http://mrdoob.com/
- * @authod arodic / http://aleksandarrodic.com/
- */
- THREE.StereoEffect = function ( renderer ) {
- // API
- this.separation = 3;
- // internals
- var _width, _height;
- var _position = new THREE.Vector3();
- var _quaternion = new THREE.Quaternion();
- var _scale = new THREE.Vector3();
- var _cameraL = new THREE.PerspectiveCamera();
- var _cameraR = new THREE.PerspectiveCamera();
- // initialization
- renderer.autoClear = false;
- this.setSize = function ( width, height ) {
- _width = width / 2;
- _height = height;
- renderer.setSize( width, height );
- };
- this.render = function ( scene, camera ) {
- scene.updateMatrixWorld();
- if ( camera.parent === undefined ) camera.updateMatrixWorld();
-
- camera.matrixWorld.decompose( _position, _quaternion, _scale );
- // left
- _cameraL.fov = camera.fov;
- _cameraL.aspect = 0.5 * camera.aspect;
- _cameraL.near = camera.near;
- _cameraL.far = camera.far;
- _cameraL.updateProjectionMatrix();
- _cameraL.position.copy( _position );
- _cameraL.quaternion.copy( _quaternion );
- _cameraL.translateX( - this.separation );
- // right
- _cameraR.near = camera.near;
- _cameraR.far = camera.far;
- _cameraR.projectionMatrix = _cameraL.projectionMatrix;
- _cameraR.position.copy( _position );
- _cameraR.quaternion.copy( _quaternion );
- _cameraR.translateX( this.separation );
- //
- renderer.setViewport( 0, 0, _width * 2, _height );
- renderer.clear();
- renderer.setViewport( 0, 0, _width, _height );
- renderer.render( scene, _cameraL );
- renderer.setViewport( _width, 0, _width, _height );
- renderer.render( scene, _cameraR );
- };
- };
|