Browse Source

WireframeBufferGeometry: Can't check for duplicates in non-indexed.

Mr.doob 10 years ago
parent
commit
c730ba1d40
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/extras/geometries/WireframeBufferGeometry.js

+ 0 - 2
src/extras/geometries/WireframeBufferGeometry.js

@@ -51,8 +51,6 @@ THREE.WireframeBufferGeometry = function ( geometry ) {
 			var b = i + 1;
 			var c = i + 2;
 
-			// TODO: Check for duplicates
-
 			indices.push( a, b, b, c, c, a );
 
 		}