소스 검색

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