Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/streamich/ts-easing

Easing functions in TypeScript
https://github.com/streamich/ts-easing

Last synced: about 2 months ago
JSON representation

Easing functions in TypeScript

Awesome Lists containing this project

README

        

# ts-easing

Collection of easing function in TypeScript.

All functions accept a number in range of `[0..1]`.

All functions return a number, which is guaranteed to start at 0 and end at 1.

```
f(t), where t in [0..1]

f(0) -> 0
f(1) -> 1
```

## Usage

```js
import {easing} from 'ts-easing';

console.log(easing.quadratic(0.5));
```

## License

[Unlicense](./LICENSE) — public domain.