2
0

VertexNode.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="zh">
  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>Constructor</h2>
  15. <h3>[name]( [param:Vector3 point] )</h3>
  16. <p>
  17. [page:Vector3 point] - [page:Vector3] A point (x, y, z) in 3D space.<br /><br />
  18. Creates a new instance of [name].
  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/jsm/math/ConvexHull.js examples/jsm/math/ConvexHull.js]
  40. <p>
  41. </body>
  42. </html>