LineCurve3.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 3d line segment.</p>
  14. <h2>Constructor</h2>
  15. <h3>[name]( [param:Vector3 v1], [param:Vector3 v2] )</h3>
  16. <p>
  17. [page:Vector3 v1] – The start point.<br/>
  18. [page:Vector3 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:Boolean isLineCurve3]</h3>
  23. <p>
  24. Used to check whether this or derived classes are LineCurve3s. Default is *true*.<br /><br />
  25. You should not change this, as it used internally for optimisation.
  26. </p>
  27. <h3>[property:Vector3 v1]</h3>
  28. <p>The start point.</p>
  29. <h3>[property:Vector3 v2]</h3>
  30. <p>The end point.</p>
  31. <h2>Methods</h2>
  32. <p>See the base [page:Curve] class for common methods.</p>
  33. <h2>Source</h2>
  34. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  35. </body>
  36. </html>