浏览代码

Remove other copy functions

Garrett Johnson 5 年之前
父节点
当前提交
ea7d602a06
共有 3 个文件被更改,包括 2 次插入32 次删除
  1. 0 14
      examples/js/lines/LineSegmentsGeometry.js
  2. 1 9
      examples/js/lines/Wireframe.js
  3. 1 9
      examples/js/lines/WireframeGeometry2.js

+ 0 - 14
examples/js/lines/LineSegmentsGeometry.js

@@ -239,20 +239,6 @@ THREE.LineSegmentsGeometry.prototype = Object.assign( Object.create( THREE.Insta
 
 
 		// todo
 		// todo
 
 
-	},
-
-	clone: function () {
-
-		// todo
-
-	},
-
-	copy: function ( /* source */ ) {
-
-		// todo
-
-		return this;
-
 	}
 	}
 
 
 } );
 } );

+ 1 - 9
examples/js/lines/Wireframe.js

@@ -52,14 +52,6 @@ THREE.Wireframe.prototype = Object.assign( Object.create( THREE.Mesh.prototype )
 
 
 		};
 		};
 
 
-	}() ),
-
-	copy: function ( /* source */ ) {
-
-		// todo
-
-		return this;
-
-	}
+	}() )
 
 
 } );
 } );

+ 1 - 9
examples/js/lines/WireframeGeometry2.js

@@ -19,14 +19,6 @@ THREE.WireframeGeometry2.prototype = Object.assign( Object.create( THREE.LineSeg
 
 
 	constructor: THREE.WireframeGeometry2,
 	constructor: THREE.WireframeGeometry2,
 
 
-	isWireframeGeometry2: true,
-
-	copy: function ( /* source */ ) {
-
-		// todo
-
-		return this;
-
-	}
+	isWireframeGeometry2: true
 
 
 } );
 } );