VertexNode.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <h1>[name]</h1>
  11. <p class="desc">
  12. A vertex as a double linked list node.
  13. </p>
  14. <h2>Import</h2>
  15. <p>
  16. [name] is an add-on, and must be imported explicitly.
  17. See [link:#manual/introduction/Installation Installation / Addons].
  18. </p>
  19. <code>
  20. import { VertexNode } from 'three/addons/math/ConvexHull.js';
  21. </code>
  22. <h2>Constructor</h2>
  23. <h3>[name]( [param:Vector3 point] )</h3>
  24. <p>
  25. [page:Vector3 point] - [page:Vector3] A point (x, y, z) in 3D space.<br /><br />
  26. Creates a new instance of [name].
  27. </p>
  28. <h2>Properties</h2>
  29. <h3>[property:Vector3 point]</h3>
  30. <p>
  31. A point (x, y, z) in 3D space. Default is undefined.
  32. </p>
  33. <h3>[property:VertexNode prev]</h3>
  34. <p>
  35. Reference to the previous vertex in the double linked list. Default is null.
  36. </p>
  37. <h3>[property:VertexNode next]</h3>
  38. <p>
  39. Reference to the next vertex in the double linked list. Default is null.
  40. </p>
  41. <h3>[property:Face face]</h3>
  42. <p>
  43. Reference to the face that is able to see this vertex. Default is undefined.
  44. </p>
  45. <h2>Source</h2>
  46. <p>
  47. [link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/math/ConvexHull.js examples/jsm/math/ConvexHull.js]
  48. <p>
  49. </body>
  50. </html>