README.md
# easings_gleam
Easing functions for animation in pure Gleam.
[](https://hex.pm/packages/easings_gleam)
[](https://hexdocs.pm/easings_gleam/)
```sh
gleam add easings_gleam@1
```
```gleam
import easings
pub fn main() -> Nil {
// Compute the easing for bounce-in halfway-through the transition
0.5
|> easings.bounce_in()
|> echo
Nil
}
```
Further documentation can be found at <https://hexdocs.pm/easings_gleam>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```