瀏覽代碼

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 @@
         }
 
     }
-} 
+}