├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── keyframes.ts ├── model.ts ├── render.ts └── rough-notation.ts ├── tsconfig.json └── tslint.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: pshihn 2 | open_collective: rough 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin 3 | dist 4 | lib 5 | demo 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/keyframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/src/keyframes.ts -------------------------------------------------------------------------------- /src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/src/model.ts -------------------------------------------------------------------------------- /src/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/src/render.ts -------------------------------------------------------------------------------- /src/rough-notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/src/rough-notation.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rough-stuff/rough-notation/HEAD/tslint.json --------------------------------------------------------------------------------