Browse Source

Remove Line Breaks at function calls

matias-capeletto 9 years ago
parent
commit
6d64a0616e
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/objects/Mesh.js

+ 2 - 4
src/objects/Mesh.js

@@ -211,8 +211,7 @@ THREE.Mesh.prototype.raycast = ( function () {
 					b = indices[ i + 1 ];
 					c = indices[ i + 2 ];
 
-					intersection = checkBufferGeometryIntersection( this, raycaster, ray, 
-																    positions, uvs, a, b, c );
+					intersection = checkBufferGeometryIntersection( this, raycaster, ray, positions, uvs, a, b, c );
 
 					if( intersection ){
 
@@ -233,8 +232,7 @@ THREE.Mesh.prototype.raycast = ( function () {
 					b = a + 1;
 					c = a + 2;
           
-					intersection = checkBufferGeometryIntersection( this, raycaster, ray, 
-																    positions, uvs, a, b, c );
+					intersection = checkBufferGeometryIntersection( this, raycaster, ray, positions, uvs, a, b, c );
 
 					if( intersection ){