├── .gitignore ├── .npmrc ├── LICENSE.md ├── OFL-License.txt ├── README.md ├── configure.js ├── module ├── build-meta-data.js ├── extend-short-stroke.js ├── font-io.js ├── instance-font.js ├── round-font.js └── util.js ├── package.json ├── res ├── live.html ├── preview.html ├── preview.png └── roundness.png ├── script ├── instance.js ├── main.js └── simplify.pe └── src └── placeholder /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | src/*.otf 3 | build/ 4 | dist/ 5 | Makefile 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock = false 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OFL-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/OFL-License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/README.md -------------------------------------------------------------------------------- /configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/configure.js -------------------------------------------------------------------------------- /module/build-meta-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/build-meta-data.js -------------------------------------------------------------------------------- /module/extend-short-stroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/extend-short-stroke.js -------------------------------------------------------------------------------- /module/font-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/font-io.js -------------------------------------------------------------------------------- /module/instance-font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/instance-font.js -------------------------------------------------------------------------------- /module/round-font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/round-font.js -------------------------------------------------------------------------------- /module/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/module/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/package.json -------------------------------------------------------------------------------- /res/live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/res/live.html -------------------------------------------------------------------------------- /res/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/res/preview.html -------------------------------------------------------------------------------- /res/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/res/preview.png -------------------------------------------------------------------------------- /res/roundness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/res/roundness.png -------------------------------------------------------------------------------- /script/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/script/instance.js -------------------------------------------------------------------------------- /script/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/script/main.js -------------------------------------------------------------------------------- /script/simplify.pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanoHao/Resource-Han-Rounded/HEAD/script/simplify.pe -------------------------------------------------------------------------------- /src/placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------