├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── example.gif ├── index.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/README.md -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/docs/example.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rastapasta/react-native-animated-math/HEAD/package.json --------------------------------------------------------------------------------