Pārlūkot izejas kodu

Update ParametricGeometries.js

Remove obsolete constructor parameter.
Michael Herzog 7 gadi atpakaļ
vecāks
revīzija
c5680b2241
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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 );
 
 };