LineCurve.html 954 B

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