فهرست منبع

StereoCamera: Clean up.

Mr.doob 9 سال پیش
والد
کامیت
90ad637b48
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/cameras/StereoCamera.js

+ 3 - 3
src/cameras/StereoCamera.js

@@ -38,15 +38,15 @@ THREE.StereoCamera.prototype.updateMatrixWorld = ( function () {
 
 		if ( needsUpdate ) {
 
-			// Off-axis stereoscopic effect based on
-			// http://paulbourke.net/stereographics/stereorender/
-
 			focalLength = this.focalLength;
 			fov = this.fov;
 			aspect = this.aspect;
 			near = this.near;
 			far = this.far;
 
+			// Off-axis stereoscopic effect based on
+			// http://paulbourke.net/stereographics/stereorender/
+
 			var projectionMatrix = this.projectionMatrix.clone();
 			var eyeSep = focalLength / 30 * 0.5;
 			var eyeSepOnProjection = eyeSep * near / focalLength;