KCurve3d 接口
export interface KCurve3d 
所有三维曲线的基类。
The root class for all 3d curves.
方法
clone
clone(): KCurve3d;
复制一个当前曲线。
Return the cloned curve of this.
返回值: KCurve3d
复制的曲线。
The cloned curve.
getClosestPoint
getClosestPoint(point: KPoint3d, tolerance?: number): KPoint3d;
获得在指定容差下曲线上距离传入点最近的一点。
Get the closest point on curve for the input point with specified tolerance.
参数:
- 
point: KPoint3d