VertexNode.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. </p>
  20. <h2>Properties</h2>
  21. <h3>[property:Vector3 point]</h3>
  22. <p>
  23. A point (x, y, z) in 3D space. Default is undefined.
  24. </p>
  25. <h3>[property:VertexNode prev]</h3>
  26. <p>
  27. Reference to the previous vertex in the double linked list. Default is null.
  28. </p>
  29. <h3>[property:VertexNode next]</h3>
  30. <p>
  31. Reference to the next vertex in the double linked list. Default is null.
  32. </p>
  33. <h3>[property:Face face]</h3>
  34. <p>
  35. Reference to the face that is able to see this vertex. Default is undefined.
  36. </p>
  37. <h2>Source</h2>
  38. <p>
  39. [link:https://github.com/mrdoob/three.js/blob/master/examples/js/math/ConvexHull.js examples/js/math/ConvexHull.js]
  40. <p>
  41. </body>
  42. </html>