ofxCubicSpline

This is Ivan Kuckir's cubic spline implementation for openFrameworks and this is also inspired by cubic-spline - npm.

example

How to use

ofxCubicSpline cubic;
vector<glm::vec2> points; // key points
points.push_back(glm::vec2(0,225));
points.push_back(glm::vec2(223,15));
// :  some points
// :
-----------------

// setup
cubic.setData(points);

// get Y at arbitrary X
float y = cubic.at(float x);