Преглед изворни кода

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 );