Skip to content

Latest commit

 

History

History
12 lines (5 loc) · 540 Bytes

README.md

File metadata and controls

12 lines (5 loc) · 540 Bytes

##Bsplines C++ class A very simple implementation of b-spline basis and b-spline functions for c++. This library was created with the mindeset to be used in scientific applications. The majority of the algorithms, when possible, follows the design from The nurbs book - Piegl & Tiller 2nd edition.

No build is required. You need to copy the folder "bsplines" that contain all the source files, into your local /usr/include/ or copy and use them in your local folder.

Compile with

g++ -std=c++11 filename.cpp -o outfilename -O3