소스 검색

Update ParametricGeometries.js

Remove obsolete constructor parameter.
Michael Herzog 7 년 전
부모
커밋
c5680b2241
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 );
 
 };