用起点和终点表示的几何线段。
[page:Vector3 start] - 线段的起始点。默认值为 (0, 0, 0)。
[page:Vector3 end] - 线段的终点。默认值为 (0, 0, 0)。
创建一个三维几何线段 [name]。
[page:Vector3] 表示线段的起点。
[page:Vector3] 表示线段的终点
对此线段应用矩阵变换。
[page:Float t] - 使用值0-1返回沿线段的位置。
[page:Vector3 target] — 计算结果会被拷贝到target。
返回一个线段某一位置的向量,当 [page:Float t] = 0的时候返回起始点,当[page:Float t] = 1的时候返回终点。
返回一个与此线段拥有相同起始点 [page:.start start] 和 终点[page:.end end] 的线段。
[page:Vector3 point] - 用于计算线段上到该点最近的点。
[page:Boolean clampToLine] - 是否将结果限制在线段起始点和终点之间。
[page:Vector3 target] — 结果会拷贝到target。
返回线段上到point最近的点。如果参数 [page:Boolean clampToLine] 为true。返回值将会在线段之间。
[page:Vector3 point] - 用于计算返回值的点
[page:Boolean clampToLine] - 结果是否处于 [0, 1]之间。
返回一个基于点投影到线段上的点的参数。如果 [page:Boolean clampToLine] 为true则返回值将在0到1之间。
拷贝传入线段的起始点 [page:.start start] 和终点 [page:.end end] 向量到当前线段。
[page:Vector3 target] — 结果将会拷贝到target。
返回线段的向量。(终点[page:.end end]向量减去起始点[page:.start start]向量)。
Returns the [link:https://en.wikipedia.org/wiki/Euclidean_distance Euclidean distance] (straight-line distance) between the line's [page:.start start] and [page:.end end] points.
返回起始点[page:.start start]和终点[page:.end end]的欧几里得距离[link:https://en.wikipedia.org/wiki/Euclidean_distance Euclidean distance]。(直线距离)
[page:Line3 line] - [page:Line3] to compare with this one.
如果给定线段与当前线段的起始点[page:.start start]和终点[page:.end end]都相同则返回true。
[page:Vector3 target] — 结果会写入target。
返回线段的中心点。
[page:Vector3 start] - 设置线段的起点 [page:.start start point]。
[page:Vector3 end] - 设置线段的终点 [page:.end end point]。
将传入的向量设置到线段的起始点和终点。
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]