Skip to content

Commit

Permalink
Update description and globe geometry radius
Browse files Browse the repository at this point in the history
  • Loading branch information
moraxy authored Nov 16, 2018
1 parent e94fd57 commit a2d4580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/webgl_lights_physical.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<div id="container"></div>
<div id="info">
<a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - Physically accurate lighting example using a incandescent bulb - by <a href="http://clara.io" target="_blank" rel="noopener">Ben Houston</a><br />
Using real world scale: Brick cube is 1 meter in size. Light is 2 meters from floor. Globe is 25 cm in diameter.<br/>
Using real world scale: Brick cube is 50 cm in size. Globe is 50 cm in diameter.<br/>
Using Reinhard inline tonemapping with real-world light falloff (decay = 2).
</div>

Expand Down Expand Up @@ -218,9 +218,9 @@
floorMesh.rotation.x = - Math.PI / 2.0;
scene.add( floorMesh );

var ballGeometry = new THREE.SphereBufferGeometry( 0.5, 32, 32 );
var ballGeometry = new THREE.SphereBufferGeometry( 0.25, 32, 32 );
var ballMesh = new THREE.Mesh( ballGeometry, ballMat );
ballMesh.position.set( 1, 0.5, 1 );
ballMesh.position.set( 1, 0.25, 1 );
ballMesh.rotation.y = Math.PI;
ballMesh.castShadow = true;
scene.add( ballMesh );
Expand Down

0 comments on commit a2d4580

Please sign in to comment.