|
◆ cubicSplinesHit()
float mgnear::cubicSplinesHit |
( |
int |
n, |
|
|
const Point2d * |
knots, |
|
|
const Vector2d * |
knotvs, |
|
|
bool |
closed, |
|
|
const Point2d & |
pt, |
|
|
float |
tol, |
|
|
Point2d & |
nearpt, |
|
|
int & |
segment, |
|
|
bool |
hermite = true |
|
) |
| |
|
static |
计算点到三次样条曲线的最近距离
- 参数
-
[in] | n | 三次样条曲线的型值点的点数 |
[in] | knots | 型值点坐标数组,元素个数为n |
[in] | knotvs | 型值点的切矢量数组,元素个数为n |
[in] | closed | 是否为闭合曲线 |
[in] | pt | 曲线段外给定的点 |
[in] | tol | 距离公差,正数,超出则不计算最近点 |
[out] | nearpt | 曲线上的最近点 |
[out] | segment | 最近点所在曲线段的序号,[0,n-2],闭合时为[0,n-1],负数表示失败 |
[in] | hermite | 是否为Hermite曲线,不是则切矢加型值点直接形成Bezier段的控制点 |
- 返回
- 给定的点到最近点的距离,失败时为极大数
- 参见
- mgcurv::cubicSplines
|