LineCurve3.html 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [page:Curve] &rarr;
  12. <h1>[name]</h1>
  13. <div class="desc">A curve representing a 3d line segment.</div>
  14. <h2>Constructor</h2>
  15. <h3>[name]( [page:Vector3 v1], [page:Vector3 v2] )</h3>
  16. <div>
  17. [page:Vector3 v1] – The start point.<br/>
  18. [page:Vector3 v2] - The end point.
  19. </div>
  20. <h2>Properties</h2>
  21. <div>See the base [page:Curve] class for common properties.</div>
  22. <h3>[property:Vector3 v1]</h3>
  23. <div>The start point.</div>
  24. <h3>[property:Vector3 v2]</h3>
  25. <div>The end point.</div>
  26. <h2>Methods</h2>
  27. <div>See the base [page:Curve] class for common methods.</div>
  28. <h2>Source</h2>
  29. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  30. </body>
  31. </html>