Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 863 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 863 Bytes

ofxEasing

Build status

Build status

Replaces ofxTween with a simpler API and no external dependencies.

Usage:

using namespace ofxeasing;
map(value, minIn, maxIn, minOut, maxOut, linear::easeIn);

Some easing functions might have more parameters than the usual 4. Right now only the _s version of the back functions which indicate which proportion of the distance is done in the back trajectory. In those cases you can pass the extra parameter at the end of the map function like:

using namespace ofxeasing;
map(value, minIn, maxIn, minOut, maxOut, back::easeIn_s, 0.8);