Garrett Johnson 6 years ago
parent
commit
176163aadc
1 changed files with 2 additions and 2 deletions
  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.addAttribute( 'position', bufGeometry.getAttribute( 'position' ) );
 				posOnlyBufGeometry.setIndex( bufGeometry.getIndex() );
 				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 );
 				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 );
 				mapIndices( bufGeometry, indexedBufferGeom );
 
 
 			}
 			}