소스 검색

Updated also WebGLRenderer2 to show quads in wireframe.

alteredq 14 년 전
부모
커밋
8a26198b41
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/renderers/WebGLRenderer2.js

+ 0 - 1
src/renderers/WebGLRenderer2.js

@@ -417,7 +417,6 @@ THREE.WebGLRenderer2 = function ( antialias ) {
 					// TODO: don't add lines that already exist (faces sharing edge)
 
 					lines.push( vertexIndex, vertexIndex + 1 );
-					lines.push( vertexIndex, vertexIndex + 2 );
 					lines.push( vertexIndex, vertexIndex + 3 );
 					lines.push( vertexIndex + 1, vertexIndex + 2 );
 					lines.push( vertexIndex + 2, vertexIndex + 3 );