tags:

views:

687

answers:

2

Hello everyone,

I'm looking for a good C++ library to give me functions to solve for large cubic splines (on the order of 1000 points) anyone know one?

Thanks in advance,

-Faken

+2  A: 

Try the Cubic B-Spline library:

and ALGLIB:

ars
The second link was pretty much what i was looking for...except I can't seem to find any documentation on that website or in the downloaded file...
Faken
Most of the documentation is indexed here: http://www.alglib.net/sitemap.php -- I don't believe there is any that can be downloaded (it's been planned for a while, don't think it's happened yet).
ars
A: 

Take a look at David Eberly's GeometricTools.com. I'm just starting, but code and doc are so far of outstanding quality.
(He has books too: Geometric tools for computer graphics, 3D game engine design.)

Denis