Points.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. [page:Object3D] &rarr;
  11. <h1>[name]</h1>
  12. <p class="desc">
  13. A class for displaying points.
  14. The points are rendered by the [page:WebGLRenderer] using
  15. [link:https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/drawElements gl.POINTS].
  16. </p>
  17. <h2>Constructor</h2>
  18. <h3>[name]( [param:BufferGeometry geometry], [param:Material material] )</h3>
  19. <p>
  20. [page:BufferGeometry geometry] — (optional) an instance of [page:BufferGeometry]. Default is a new [page:BufferGeometry].<br />
  21. [page:Material material] — (optional) a [page:Material]. Default is a new [page:PointsMaterial].
  22. </p>
  23. <h2>Properties</h2>
  24. <p>See the base [page:Object3D] class for common properties.</p>
  25. <h3>[property:BufferGeometry geometry]</h3>
  26. <p>
  27. An instance of [page:BufferGeometry] (or derived classes), defining the object's structure.
  28. </p>
  29. <h3>[property:Boolean isPoints]</h3>
  30. <p>
  31. Read-only flag to check if a given object is of type [name].
  32. </p>
  33. <h3>[property:Material material]</h3>
  34. <p>
  35. An instance of [page:Material], defining the object's appearance.
  36. Default is a [page:PointsMaterial].
  37. </p>
  38. <h3>[property:Array morphTargetInfluences]</h3>
  39. <p>
  40. An array of weights typically from 0-1 that specify how much of the morph is applied.
  41. Undefined by default, but reset to a blank array by [page:Points.updateMorphTargets updateMorphTargets].
  42. </p>
  43. <h3>[property:Object morphTargetDictionary]</h3>
  44. <p>
  45. A dictionary of morphTargets based on the morphTarget.name property.
  46. Undefined by default, but rebuilt [page:Points.updateMorphTargets updateMorphTargets].
  47. </p>
  48. <h2>Methods</h2>
  49. <p>See the base [page:Object3D] class for common methods.</p>
  50. <h3>[method:undefined raycast]( [param:Raycaster raycaster], [param:Array intersects] )</h3>
  51. <p>
  52. Get intersections between a casted ray and this Points.
  53. [page:Raycaster.intersectObject] will call this method.
  54. </p>
  55. <h3>[method:Points clone]()</h3>
  56. <p>
  57. Returns a clone of this Points object and its descendants.
  58. </p>
  59. <h3>[method:undefined updateMorphTargets]()</h3>
  60. <p>
  61. Updates the morphTargets to have no influence on the object. Resets the
  62. [page:Points.morphTargetInfluences morphTargetInfluences] and
  63. [page:Points.morphTargetDictionary morphTargetDictionary] properties.
  64. </p>
  65. <h2>Source</h2>
  66. <p>
  67. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  68. </p>
  69. </body>
  70. </html>