Skip to content

Commit 13f1e9e

Browse files
committed
Update 02-first-scene.html
1 parent 89cfb14 commit 13f1e9e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

chapter-01/02-first-scene.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
var axes = new THREE.AxisHelper( 20 );
4242
scene.add(axes);
4343

44+
/*
4445
// create the ground plane
4546
var planeGeometry = new THREE.PlaneGeometry(60,20);
4647
var planeMaterial = new THREE.MeshBasicMaterial({color: 0xcccccc});
@@ -88,6 +89,7 @@
8889
camera.position.y = 40;
8990
camera.position.z = 30;
9091
camera.lookAt(scene.position);
92+
*/
9193

9294
// add the output of the renderer to the html element
9395
$("#WebGL-output").append(renderer.domElement);
@@ -100,4 +102,4 @@
100102

101103
</script>
102104
</body>
103-
</html>
105+
</html>

0 commit comments

Comments
 (0)