├── .gitignore ├── LICENSE ├── README.md ├── demos ├── basic-animated.py ├── basic-gui-widgets.py ├── basic.py └── fonts │ └── WoodbineGX.ttf └── documentation ├── README.md └── screenshots └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/README.md -------------------------------------------------------------------------------- /demos/basic-animated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/demos/basic-animated.py -------------------------------------------------------------------------------- /demos/basic-gui-widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/demos/basic-gui-widgets.py -------------------------------------------------------------------------------- /demos/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/demos/basic.py -------------------------------------------------------------------------------- /demos/fonts/WoodbineGX.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/demos/fonts/WoodbineGX.ttf -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliheuer/drawbot-variable-font-demos/HEAD/documentation/screenshots/screenshot.png --------------------------------------------------------------------------------