Browse Source

Cleaned up Box3.

Mr.doob 12 years ago
parent
commit
ef87a12c9a
1 changed files with 2 additions and 2 deletions
  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;