Browse Source

Remove accidental white space

Chaitanya Asawa 8 years ago
parent
commit
5e64b96df5
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/math/Sphere.js

+ 1 - 2
src/math/Sphere.js

@@ -104,14 +104,13 @@ Object.assign( Sphere.prototype, {
 		return box.intersectsSphere( this );
 
 	},
-	
+
 	intersectsPlane: function ( plane ) {
 
 		return Math.abs( plane.distanceToPoint( this.center ) ) <= this.radius;
 
 	},
 
-
 	clampPoint: function ( point, optionalTarget ) {
 
 		var deltaLengthSq = this.center.distanceToSquared( point );