ease
ease copied to clipboard
Easing functions for canvas etc
you save my life save my time thx :D
I'm trying to embed these easing functions for a project I'm working on http://noflojs.org to implement this feature : https://www.youtube.com/watch?v=4rrQGZsGCK0 This pull request bring bower packaging which is what NoFlo...
It seems the npm package name doesn't match the component one. As a result you can't do require('ease'); from node, you need require('ease-component'); Any way around this?
``` var ease = require('ease'); var myCustomEase = ease.bezier(.17, .67, .83, .67); var rawValue = 0.3; var easedValue = myCustomEase(rawValue); ``` If this seems like a worthwhile addition I will...