Browse Source

Minor clean up.

Mr.doob 9 years ago
parent
commit
b7961957e9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/Geometry.js

+ 2 - 2
src/core/Geometry.js

@@ -865,11 +865,11 @@ THREE.Geometry.prototype = {
 
 	sortFacesByMaterialIndex: function () {
 
-		// tag faces
-
 		var faces = this.faces;
 		var length = faces.length;
 
+		// tag faces
+
 		for ( var i = 0; i < length; i ++ ) {
 
 			faces[ i ]._id = i;