Răsfoiți Sursa

Fix implicit variable declaration in OrthographicCamera unit test

Tristan Valcke 8 ani în urmă
părinte
comite
e98723d8fd
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      test/unit/cameras/OrthographicCamera.js

+ 1 - 1
test/unit/cameras/OrthographicCamera.js

@@ -6,7 +6,7 @@ module( "OrthographicCamera" );
 
 test( "updateProjectionMatrix", function() {
 	var left = -1, right = 1, top = 1, bottom = -1, near = 1, far = 3;
-	cam = new THREE.OrthographicCamera(left, right, top, bottom, near, far);
+	var cam = new THREE.OrthographicCamera(left, right, top, bottom, near, far);
 
 	// updateProjectionMatrix is called in contructor
 	var pMatrix = cam.projectionMatrix.elements;