소스 검색

Cleaned up Box3.

Mr.doob 12 년 전
부모
커밋
ef87a12c9a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/math/Box3.js

+ 2 - 2
src/math/Box3.js

@@ -229,9 +229,9 @@ THREE.Box3.prototype = {
 	getBoundingSphere: function ( optionalTarget ) {
 
 		var result = optionalTarget || new THREE.Sphere();
-		
+
 		result.center = this.center();
-		result.radius = this.size( THREE.Box3.__v0 ).length() * 0.5;;
+		result.radius = this.size( THREE.Box3.__v0 ).length() * 0.5;
 
 		return result;