Garrett Johnson 6 년 전
부모
커밋
176163aadc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      examples/webgl_physics_volume.html

+ 2 - 2
examples/webgl_physics_volume.html

@@ -196,10 +196,10 @@
 				posOnlyBufGeometry.addAttribute( 'position', bufGeometry.getAttribute( 'position' ) );
 				posOnlyBufGeometry.setIndex( bufGeometry.getIndex() );
 
-                // Merge the vertices so the triangle soup is converted to indexed triangles
+				// Merge the vertices so the triangle soup is converted to indexed triangles
 				var indexedBufferGeom = THREE.BufferGeometryUtils.mergeVertices( posOnlyBufGeometry );
 
-                // Create index arrays mapping the indexed vertices to bufGeometry vertices
+				// Create index arrays mapping the indexed vertices to bufGeometry vertices
 				mapIndices( bufGeometry, indexedBufferGeom );
 
 			}