LOD.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. [page:Object3D] &rarr;
  12. <h1>[name]</h1>
  13. <div class="desc">Level of Detail - Show meshes with more or less geometry based on distance.</div>
  14. <h2>Example</h2>
  15. <div>
  16. [example:webgl_lod LOD]
  17. </div>
  18. <code>
  19. var lod = new THREE.LOD();
  20. //Create 5 levels of spheres
  21. for( var i = 0; i < 5; i++ ) {
  22. var geometry = new THREE.IcosahedronGeometry( 10, 5 - i )
  23. new THREE.Mesh( geometry, material );
  24. lod.addLevel( mesh, i * 50 );
  25. }
  26. </code>
  27. <h2>Constructor</h2>
  28. <h3>[name]()</h3>
  29. <h2>Properties</h2>
  30. <h3>[property:array levels]</h3>
  31. <div>
  32. An array of [page:object level] objects
  33. </div>
  34. <div>
  35. level is an object with two properties.
  36. </div>
  37. <div>
  38. distance -- The distance at which to display this level of detail<br />
  39. object -- The Object3D which will be displayed
  40. </div>
  41. <h2>Methods</h2>
  42. <h3>[method:null addLevel]( [page:Object3D mesh], [page:Float distance] )</h3>
  43. <div>
  44. mesh -- The Object3D to display <br />
  45. distance -- The distance at which to display this level of detail
  46. </div>
  47. <div>
  48. Adds a mesh that will display at a certain distance and greater. Typically the further away the distance,
  49. the lower the detail on the mesh.
  50. </div>
  51. <h3>[method:Object3D getObjectForDistance]( [page:Float distance] )</h3>
  52. <div>
  53. Get a reference to the first [page:Object3D] (mesh) that is greater than supplied distance.
  54. </div>
  55. <h3>[method:null update]( [page:Camera camera] )</h3>
  56. <div>
  57. camera -- The current camera
  58. </div>
  59. <div>
  60. Update the visiblility of the level of detail based on the distance from the camera.
  61. </div>
  62. <h3>[method:LOD clone]()</h3>
  63. <div>
  64. Returns a clone of this LOD object and its associated distance specific objects.
  65. </div>
  66. <h2>Source</h2>
  67. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  68. </body>
  69. </html>