Line3.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. <p class="desc">用起点和终点表示的几何线段。</p>
  13. <h2>构造器(Constructor)</h2>
  14. <h3>[name]( [param:Vector3 start], [param:Vector3 end] )</h3>
  15. <p>
  16. [page:Vector3 start] - 线段的起始点。默认值为 (0, 0, 0)。<br />
  17. [page:Vector3 end] - 线段的终点。默认值为 (0, 0, 0)。<br /><br />
  18. 创建一个三维几何线段 [name]。
  19. </p>
  20. <h2>属性(Properties)</h2>
  21. <h3>[property:Vector3 start]</h3>
  22. <p>[page:Vector3] 表示线段的起点。</p>
  23. <h3>[property:Vector3 end]</h3>
  24. <p>[page:Vector3] 表示线段的终点</p>
  25. <h2>方法(Methods)</h2>
  26. <h3>[method:Line3 applyMatrix4]( [param:Matrix4 matrix] )</h3>
  27. <p>对此线段应用矩阵变换。</p>
  28. <h3>[method:Vector3 at]( [param:Float t], [param:Vector3 target] )</h3>
  29. <p>
  30. [page:Float t] - 使用值0-1返回沿线段的位置。<br />
  31. [page:Vector3 target] — 计算结果会被拷贝到target。<br /><br />
  32. 返回一个线段某一位置的向量,当 [page:Float t] = 0的时候返回起始点,当[page:Float t] = 1的时候返回终点。<br />
  33. </p>
  34. <h3>[method:Line3 clone]()</h3>
  35. <p>返回一个与此线段拥有相同起始点 [page:.start start] 和 终点[page:.end end] 的线段。</p>
  36. <h3>[method:Vector3 closestPointToPoint]( [param:Vector3 point], [param:Boolean clampToLine], [param:Vector3 target] )</h3>
  37. <p>
  38. [page:Vector3 point] - 用于计算线段上到该点最近的点。<br />
  39. [page:Boolean clampToLine] - 是否将结果限制在线段起始点和终点之间。<br />
  40. [page:Vector3 target] — 结果会拷贝到target。<br /><br />
  41. 返回线段上到point最近的点。如果参数 [page:Boolean clampToLine] 为true。返回值将会在线段之间。
  42. </p>
  43. <h3>[method:Float closestPointToPointParameter]( [param:Vector3 point], [param:Boolean clampToLine] )</h3>
  44. <p>
  45. [page:Vector3 point] - 用于计算返回值的点 <br />
  46. [page:Boolean clampToLine] - 结果是否处于 [0, 1]之间。<br /><br />
  47. 返回一个基于点投影到线段上的点的参数。如果 [page:Boolean clampToLine] 为true则返回值将在0到1之间。
  48. </p>
  49. <h3>[method:Line3 copy]( [param:Line3 line] )</h3>
  50. <p>拷贝传入线段的起始点 [page:.start start] 和终点 [page:.end end] 向量到当前线段。</p>
  51. <h3>[method:Vector3 delta]( [param:Vector3 target] )</h3>
  52. <p>
  53. [page:Vector3 target] — 结果将会拷贝到target。<br /><br />
  54. 返回线段的向量。(终点[page:.end end]向量减去起始点[page:.start start]向量)。
  55. </p>
  56. <h3>[method:Float distance]()</h3>
  57. <p>Returns the [link:https://en.wikipedia.org/wiki/Euclidean_distance Euclidean distance]
  58. (straight-line distance) between the line's [page:.start start] and [page:.end end] points.</p>
  59. <h3>[method:Float distanceSq]()</h3>
  60. <p>
  61. 返回起始点[page:.start start]和终点[page:.end end]的欧几里得距离[link:https://en.wikipedia.org/wiki/Euclidean_distance Euclidean distance]。(直线距离)
  62. </p>
  63. <h3>[method:Boolean equals]( [param:Line3 line] )</h3>
  64. <p>
  65. [page:Line3 line] - [page:Line3] to compare with this one.<br /><br />
  66. 如果给定线段与当前线段的起始点[page:.start start]和终点[page:.end end]都相同则返回true。
  67. </p>
  68. <h3>[method:Vector3 getCenter]( [param:Vector3 target] )</h3>
  69. <p>
  70. [page:Vector3 target] — 结果会写入target。<br /><br />
  71. 返回线段的中心点。
  72. </p>
  73. <h3>[method:Line3 set]( [param:Vector3 start], [param:Vector3 end] )</h3>
  74. <p>
  75. [page:Vector3 start] - 设置线段的起点 [page:.start start point]。<br />
  76. [page:Vector3 end] - 设置线段的终点 [page:.end end point]。<br /><br />
  77. 将传入的向量设置到线段的起始点和终点。
  78. </p>
  79. <h2>源码(Source)</h2>
  80. <p>
  81. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  82. </p>
  83. </body>
  84. </html>