bluelover 发表于 2003-7-3 18:04:00

[求助]关于Spline的问题

请问为什么样条曲线在不输入切矢量的情况下,第一个拟合点处的切线方向只与前四个拟合点有关?(也就是说,只要前四个拟合点的位置不变,那么第一个拟合点处的切线就是确定的)这个切矢量与前四个拟合点有什么关系?

望高手相助!谢了

zfbj 发表于 2003-7-4 13:29:00

如果不从ARX编程中来看这个问题,很难回答。
在ARX中创建样条曲线对象,需要这样的两个参数:
order :The order of the spline to be created (in the range 2 to 26)
fitTolerance :The tolerance to which the spline should approximate fitPoints
帮助系统中的解释是这样的:
Creates a spline that attempts to fit an order degree curve to the array of points within the tolerance fitTolerance. A fitTolerance of 0 causes the curve to be interpolated precisely through all the points in the points array. The curve order may be in the range 2 to 26.

order参数可能就是你所说的与前四个点有关,从上面的说明来看,实际上可能并不是这样的。至于切矢量与前四个拟合点的关系,这是一种算法,在ARX中也没有公开,因此我不知道。

欢迎你提出自己的意见。

bluelover 发表于 2003-7-7 21:21:00

谢谢

能不能从VBA编程的角度讲一下?
我的师兄师姐研究的结果就如我上面提到的。
页: [1]
查看完整版本: [求助]关于Spline的问题