Browse Source

Merge pull request #19396 from munrocket/lgtm

LGTM warning fix
Mr.doob 5 years ago
parent
commit
c9fd6dde7d
1 changed files with 0 additions and 5 deletions
  1. 0 5
      examples/webgl_geometry_terrain_fog.html

+ 0 - 5
examples/webgl_geometry_terrain_fog.html

@@ -30,15 +30,10 @@
 			import { ImprovedNoise } from './jsm/math/ImprovedNoise.js';
 
 			var container, stats;
-
 			var camera, controls, scene, renderer;
-
 			var mesh, texture;
 
 			var worldWidth = 256, worldDepth = 256;
-			var worldHalfWidth = worldWidth / 2;
-			var worldHalfDepth = worldDepth / 2;
-
 			var clock = new THREE.Clock();
 
 			init();