浏览代码

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 );
 
 };