소스 검색

format code

zhaoy 7 년 전
부모
커밋
bfad0e883a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/math/Frustum.js

+ 2 - 2
src/math/Frustum.js

@@ -149,12 +149,12 @@ Object.assign( Frustum.prototype, {
 			for ( var i = 0; i < 6; i ++ ) {
 
 				var plane = planes[ i ];
-				
+
 				//corner at max distance
 				p.x = plane.normal.x > 0 ? box.max.x : box.min.x;
 				p.y = plane.normal.y > 0 ? box.max.y : box.min.y;
 				p.z = plane.normal.z > 0 ? box.max.z : box.min.z;
-				
+
 				if ( plane.distanceToPoint( p ) < 0 ) {
 
 					return false;