VertexNode.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <h1>[name]</h1>
  12. <p class="desc">
  13. A vertex as a double linked list node.
  14. </p>
  15. <h2>Constructor</h2>
  16. <h3>[name]( [param:Vector3 point] )</h3>
  17. <p>
  18. [page:Vector3 point] - [page:Vector3] A point (x, y, z) in 3D space.<br /><br />
  19. Creates a new instance of [name].
  20. </p>
  21. <h2>Properties</h2>
  22. <h3>[property:Vector3 point]</h3>
  23. <p>
  24. A point (x, y, z) in 3D space. Default is undefined.
  25. </p>
  26. <h3>[property:VertexNode prev]</h3>
  27. <p>
  28. Reference to the previous vertex in the double linked list. Default is null.
  29. </p>
  30. <h3>[property:VertexNode next]</h3>
  31. <p>
  32. Reference to the next vertex in the double linked list. Default is null.
  33. </p>
  34. <h3>[property:Face face]</h3>
  35. <p>
  36. Reference to the face that is able to see this vertex. Default is undefined.
  37. </p>
  38. <h2>Source</h2>
  39. <p>
  40. [link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/math/ConvexHull.js examples/jsm/math/ConvexHull.js]
  41. <p>
  42. </body>
  43. </html>