Explorar el Código

Update ParametricGeometries.js

Remove obsolete constructor parameter.
Michael Herzog hace 7 años
padre
commit
c5680b2241
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/js/ParametricGeometries.js

+ 1 - 1
examples/js/ParametricGeometries.js

@@ -241,7 +241,7 @@ THREE.ParametricGeometries.SphereGeometry = function ( size, u, v ) {
 
 	}
 
-	THREE.ParametricGeometry.call( this, sphere, u, v, ! true );
+	THREE.ParametricGeometry.call( this, sphere, u, v );
 
 };