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

Merge pull request #230 from Temechon/patch-4

Removed useless semicolon
deltakosh пре 11 година
родитељ
комит
eb27546ba6
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      Babylon/Culling/babylon.boundingSphere.ts

+ 2 - 2
Babylon/Culling/babylon.boundingSphere.ts

@@ -10,7 +10,7 @@
         constructor(public minimum: Vector3, public maximum: Vector3) {
             var distance = BABYLON.Vector3.Distance(minimum, maximum);
 
-            this.center = BABYLON.Vector3.Lerp(minimum, maximum, 0.5);;
+            this.center = BABYLON.Vector3.Lerp(minimum, maximum, 0.5);
             this.radius = distance * 0.5;
 
             this.centerWorld = BABYLON.Vector3.Zero();
@@ -61,4 +61,4 @@
         }
 
     }
-} 
+}