Explorar el Código

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

Mr.doob hace 10 años
padre
commit
c730ba1d40
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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 );
 
 		}