├── .gitignore ├── LICENSE ├── README.md ├── example ├── interrupt.js └── lots-of-points.js ├── index.js ├── package.json ├── src ├── easings │ ├── compiled-easings.js │ ├── easings.glsl │ └── index.js └── index.js └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/README.md -------------------------------------------------------------------------------- /example/interrupt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/example/interrupt.js -------------------------------------------------------------------------------- /example/lots-of-points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/example/lots-of-points.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/package.json -------------------------------------------------------------------------------- /src/easings/compiled-easings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/src/easings/compiled-easings.js -------------------------------------------------------------------------------- /src/easings/easings.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/src/easings/easings.glsl -------------------------------------------------------------------------------- /src/easings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/src/easings/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/src/index.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/regl-tween/HEAD/test/test.js --------------------------------------------------------------------------------