Mesh.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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">Base class for Mesh objects, such as [page:MorphAnimMesh] and [page:SkinnedMesh].</div>
  14. <h2>Example</h2>
  15. <code>var geometry = new THREE.BoxGeometry( 1, 1, 1 );
  16. var material = new THREE.MeshBasicMaterial( { color: 0xffff00 } );
  17. var mesh = new THREE.Mesh( geometry, material );
  18. scene.add( mesh );
  19. </code>
  20. <h2>Constructor</h2>
  21. <h3>[name]( [page:Geometry geometry], [page:Material material] )</h3>
  22. <div>
  23. geometry — An instance of [page:Geometry].<br />
  24. material — An instance of [page:Material] (optional).
  25. </div>
  26. <h2>Properties</h2>
  27. <div>See the base [page:Object3D] class for common properties.</div>
  28. <h3>[property:Geometry geometry]</h3>
  29. <div>An instance of [page:Geometry], defining the object's structure.</div>
  30. <h3>[property:Material material]</h3>
  31. <div>An instance of [page:Material], defining the object's appearance. Default is a [page:MeshBasicMaterial] with wireframe mode enabled and randomised colour.</div>
  32. <h3>[property:Array morphTargetInfluences]</h3>
  33. <div>
  34. An array of weights typically from 0-1 that specify how much of the morph is applied.
  35. Undefined by default, but reset to a blank array by [page:Mesh.updateMorphTargets updateMorphTargets].
  36. </div>
  37. <h3>[property:Array morphTargetDictionary]</h3>
  38. <div>
  39. A dictionary of morphTargets based on the morphTarget.name property.
  40. Undefined by default, but rebuilt [page:Mesh.updateMorphTargets updateMorphTargets].
  41. </div>
  42. <h3>[property:Integer drawMode]</h3>
  43. <div>
  44. Determines how the mesh triangles are constructed from the vertices. See the draw mode [page:DrawModes constants] for all possible values. Default is [page:DrawModes TrianglesDrawMode].
  45. </div>
  46. <h2>Methods</h2>
  47. <div>See the base [page:Object3D] class for common methods.</div>
  48. <h3>[method:null updateMorphTargets]()</h3>
  49. <div>
  50. Updates the morphtargets to have no influence on the object. Resets the
  51. [page:Mesh.morphTargetInfluences morphTargetInfluences],
  52. [page:Mesh.morphTargetDictionary morphTargetDictionary], and
  53. [page:Mesh.morphTargetBase morphTargetBase] properties.
  54. </div>
  55. <h3>[method:Array raycast]( [page:Raycaster raycaster], [page:Array intersects] )</h3>
  56. <div>
  57. Get intersections between a casted ray and this mesh. [page:Raycaster.intersectObject] will call this method.
  58. </div>
  59. <h3>[method:Mesh clone]()</h3>
  60. <div>
  61. Returns a clone of this Mesh object and its descendants.
  62. </div>
  63. <h2>Source</h2>
  64. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  65. </body>
  66. </html>