VertexNode.html 1.1 KB

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