瀏覽代碼

Remove unneccessary argument

https://lgtm.com/projects/g/mrdoob/three.js/snapshot/60c5764c63fa3841f02dcf91cf7dceeeef66889c/files/build/three.module.js?#x16404adc80fd6243:1
gero3 7 年之前
父節點
當前提交
1f2b11a169
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/geometries/ExtrudeGeometry.js

+ 1 - 1
src/geometries/ExtrudeGeometry.js

@@ -72,7 +72,7 @@ function ExtrudeBufferGeometry( shapes, options ) {
 	for ( var i = 0, l = shapes.length; i < l; i ++ ) {
 	for ( var i = 0, l = shapes.length; i < l; i ++ ) {
 
 
 		var shape = shapes[ i ];
 		var shape = shapes[ i ];
-		addShape( shape, options );
+		addShape( shape );
 
 
 	}
 	}