样条、B 样条和 NURBS C++ 库

2021-12-30 00:00:00 graphics c++

有谁知道样条曲线的库或类集 - 特别是 b 样条曲线和 NURBS(可选).

Does anyone know of a library or set of classes for splines - specifically b-splines and NURBS (optional).

一个快速、高效的 b-spline 库目前对我来说非常有用.

A fast, efficient b-spline library would be so useful for me at the moment.

推荐答案

1.) 对于 B 样条线 - 您应该检查 C 中的数值食谱(有这本书,也可以在线获得以供参考)

1.) For B Splines - You should check Numerical Recipes in C (there is book for that and it is also available online for reference)

2.) 同时检查:sourceforge.net/projects/einspline/&这个

2.) Also check: sourceforge.net/projects/einspline/ & this

-AD

相关文章