diff --git a/README.md b/README.md index c190657d..6a5244d0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,24 @@ learning-threejs ================ -Code repository for the examples from the Packt book "Learning Threejs" \ No newline at end of file +Code repository for the examples from the Packt book "Learning Threejs" + +**Chapter 1** + +[01-basic-skeleton.html](http://murat-aka.github.io/learning-threejs/chapter-01/01-basic-skeleton.html) + +[02-first-scene.html](http://murat-aka.github.io/learning-threejs/chapter-01/02-first-scene.html) + +[03-materials-light.html](http://murat-aka.github.io/learning-threejs/chapter-01/03-materials-light.html) + +[04-materials-light-animation.html](http://murat-aka.github.io/learning-threejs/chapter-01/04-materials-light-animation.html) + +[05-control-gui.html](http://murat-aka.github.io/learning-threejs/chapter-01/05-control-gui.html) + +[06-ascii-renderer.html](http://murat-aka.github.io/learning-threejs/chapter-01/06-ascii-renderer.html) + + +**Chapter 2** + + +[01-basic-scene.html](http://murat-aka.github.io/learning-threejs/chapter-02/01-basic-scene.html) diff --git a/chapter-01/02-first-scene.html b/chapter-01/02-first-scene.html index f09cce6a..452144d9 100644 --- a/chapter-01/02-first-scene.html +++ b/chapter-01/02-first-scene.html @@ -41,6 +41,7 @@ var axes = new THREE.AxisHelper( 20 ); scene.add(axes); +/* // create the ground plane var planeGeometry = new THREE.PlaneGeometry(60,20); var planeMaterial = new THREE.MeshBasicMaterial({color: 0xcccccc}); @@ -88,6 +89,7 @@ camera.position.y = 40; camera.position.z = 30; camera.lookAt(scene.position); + */ // add the output of the renderer to the html element $("#WebGL-output").append(renderer.domElement); @@ -100,4 +102,4 @@ - \ No newline at end of file +