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 );
 
 			}