Преглед на файлове

Remove accidental white space

Chaitanya Asawa преди 8 години
родител
ревизия
5e64b96df5
променени са 1 файла, в които са добавени 1 реда и са изтрити 2 реда
  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 );