easey 2.1.0

Easing functions for interpolation between 0.0 and 1.0
Documentation
1
2
3
4
5
6
7
macro_rules! generate_inverse {
    ( $fxx:ident ) => {
        pub fn inverse(n: $fxx) -> $fxx {
            1.0 - n
        }
    };
}