├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js └── src ├── FreeTransform.svelte ├── index.js └── vector.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | /dist/ 4 | 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/FreeTransform.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/src/FreeTransform.svelte -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/src/index.js -------------------------------------------------------------------------------- /src/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mononaut/svelte-free-transform/HEAD/src/vector.js --------------------------------------------------------------------------------