This is a very simple implementation of the the easings found at https://easings.net/en. The intent is to provide easy functionality without a ton of bells and whistles.
Install by placing this in the dependencies of your Cargo.toml
:
easings-rs = "0.1.0"
There is a single enum with a variant for each easing effect documented on the above site,
along with a Linear
easing as well. They are provided as <category><in/out/inout>
, such as
ElasticOut
or SineInOut
. There is one exported function called ease
which can called to
get the easing value for a percentage progress (f32
between 0 and 1).
So, let's say you are using this in a game engine like Amethyst, and you are easing between two positions for an object:
```
pub struct EaseEffect { pub durationframes: u64, pub startframe: u64, pub easing: Easing, }
// ...
let frameselapsed = time.framenumber() - easeeffect.startframe; let percent = frameselapsed as f32 / easeeffect.durationframes as f32; let progress = ease(easeeffect.easing, percent); *transform.translation_mut() = source + progress * (destination - source);
```
```
```