Skip to content
This repository was archived by the owner on Jul 3, 2019. It is now read-only.

Commit 743c8e2

Browse files
committed
fixed linting error
1 parent 1429173 commit 743c8e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/lore/engine/object/globe.class.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ export class Globe extends Basic {
7474
this.geometry.computeVertexNormals();
7575
this.geometry.computeBoundingSphere();
7676
this.geometry.normalizeNormals();
77-
(this.geometry as any).computeBoundsTree({ maxDepth: 140, maxLeafTris: 20 }); // Use the injected method end enable fast raycasting, only works with Buffered Geometries
77+
// Use the injected method end enable fast raycasting, only works with Buffered Geometries
78+
(this.geometry as any).computeBoundsTree({ maxDepth: 140, maxLeafTris: 20 });
7879
this.addEventListener('click', (event: ClickEvent) => {
7980
this.stage.engineService.selected.next(undefined);
8081
});

0 commit comments

Comments
 (0)