Explorar el Código

removed extra space from orbit example code

Matt Hova hace 7 años
padre
commit
65004bbec9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/examples/controls/OrbitControls.html

+ 1 - 1
docs/examples/controls/OrbitControls.html

@@ -30,7 +30,7 @@ document.body.appendChild( renderer.domElement );
 
 var scene = new THREE.Scene();
 
-var  camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 );
+var camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 );
 
 var controls = new THREE.OrbitControls( camera );