Procházet zdrojové kódy

Remove Line Breaks at function calls

matias-capeletto před 10 roky
rodič
revize
6d64a0616e
1 změnil soubory, kde provedl 2 přidání a 4 odebrání
  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 ){