├── .gitignore ├── docs └── _static │ └── freetype-generator-logo.jpg ├── ft-generate.py ├── ft-view-encoded.py ├── ft-view-for-vera.txt ├── ft-view.py ├── ftcommon.py ├── generate-all-fonts.sh ├── micropython ├── docs │ └── _static │ │ ├── arrow_15.jpg │ │ ├── arrow_23.jpg │ │ ├── dejav_m10.jpg │ │ ├── dejav_m12.jpg │ │ ├── dejav_m15.jpg │ │ ├── dejav_m20.jpg │ │ ├── dejav_m8.jpg │ │ ├── etypo_13.jpg │ │ ├── etypo_23.jpg │ │ ├── fserif_m10.jpg │ │ ├── fserif_m12.jpg │ │ ├── fserif_m15.jpg │ │ ├── fserif_m20.jpg │ │ ├── heyd_23.jpg │ │ ├── pitch_15.jpg │ │ ├── pitch_23.jpg │ │ ├── robotl_m10.jpg │ │ ├── robotl_m12.jpg │ │ ├── robotl_m15.jpg │ │ ├── robotl_m20.jpg │ │ ├── robotl_m8.jpg │ │ ├── vera_10.jpg │ │ ├── vera_23.jpg │ │ ├── vera_m15.jpg │ │ ├── veram_15.jpg │ │ └── veram_23.jpg ├── examples │ ├── quickload.py │ ├── test_basic.py │ ├── test_raw.py │ ├── vera_m15.bin │ └── vera_m15.py ├── lib │ └── fdrawer.py └── readme.md ├── readme.md ├── tech_info.md ├── ttf-fonts ├── Arrows.ttf ├── DejaVuSansMono.ttf ├── Entypo.otf ├── FreeSerif-4aeK.ttf ├── PitchDisplayRegularDemo.ttf ├── Roboto-Light.ttf ├── Vera.ttf ├── VeraMono.ttf ├── arrows.zip ├── dejavu-fonts-ttf-2.37.zip ├── entypo.zip ├── heydings-common-icons.zip ├── heydings_icons.ttf ├── pitch_display.zip ├── readme.md └── roboto.zip └── upy-fonts ├── arrows_15.bin ├── arrows_15.py ├── arrows_23.bin ├── arrows_23.py ├── dejav_m10.bin ├── dejav_m10.py ├── dejav_m12.bin ├── dejav_m12.py ├── dejav_m15.bin ├── dejav_m15.py ├── dejav_m20.bin ├── dejav_m20.py ├── dejav_m8.bin ├── dejav_m8.py ├── etypo_13.bin ├── etypo_13.py ├── etypo_23.bin ├── etypo_23.py ├── fserif_m10.bin ├── fserif_m10.py ├── fserif_m12.bin ├── fserif_m12.py ├── fserif_m15.bin ├── fserif_m15.py ├── fserif_m20.bin ├── fserif_m20.py ├── heyd_23.bin ├── heyd_23.py ├── pitch_15.bin ├── pitch_15.py ├── pitch_23.bin ├── pitch_23.py ├── readme.md ├── robotl_m10.bin ├── robotl_m10.py ├── robotl_m12.bin ├── robotl_m12.py ├── robotl_m15.bin ├── robotl_m15.py ├── robotl_m20.bin ├── robotl_m20.py ├── robotl_m8.bin ├── robotl_m8.py ├── vera_10.bin ├── vera_10.py ├── vera_15.bin ├── vera_15.py ├── vera_23.bin ├── vera_23.py ├── vera_8.bin ├── vera_8.py ├── vera_9.bin ├── vera_9.py ├── vera_m10.bin ├── vera_m10.py ├── vera_m15.bin ├── vera_m15.py ├── vera_m23.bin ├── vera_m23.py ├── vera_m8.bin ├── vera_m8.py ├── vera_m9.bin ├── vera_m9.py ├── veram_10.bin ├── veram_10.py ├── veram_15.bin ├── veram_15.py ├── veram_23.bin ├── veram_23.py ├── veram_9.bin ├── veram_9.py ├── veram_m10.bin ├── veram_m10.py ├── veram_m15.bin ├── veram_m15.py ├── veram_m23.bin ├── veram_m23.py ├── veram_m9.bin └── veram_m9.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /docs/_static/freetype-generator-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/docs/_static/freetype-generator-logo.jpg -------------------------------------------------------------------------------- /ft-generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ft-generate.py -------------------------------------------------------------------------------- /ft-view-encoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ft-view-encoded.py -------------------------------------------------------------------------------- /ft-view-for-vera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ft-view-for-vera.txt -------------------------------------------------------------------------------- /ft-view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ft-view.py -------------------------------------------------------------------------------- /ftcommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ftcommon.py -------------------------------------------------------------------------------- /generate-all-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/generate-all-fonts.sh -------------------------------------------------------------------------------- /micropython/docs/_static/arrow_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/arrow_15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/arrow_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/arrow_23.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/dejav_m10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/dejav_m10.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/dejav_m12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/dejav_m12.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/dejav_m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/dejav_m15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/dejav_m20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/dejav_m20.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/dejav_m8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/dejav_m8.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/etypo_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/etypo_13.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/etypo_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/etypo_23.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/fserif_m10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/fserif_m10.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/fserif_m12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/fserif_m12.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/fserif_m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/fserif_m15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/fserif_m20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/fserif_m20.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/heyd_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/heyd_23.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/pitch_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/pitch_15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/pitch_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/pitch_23.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/robotl_m10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/robotl_m10.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/robotl_m12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/robotl_m12.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/robotl_m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/robotl_m15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/robotl_m20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/robotl_m20.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/robotl_m8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/robotl_m8.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/vera_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/vera_10.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/vera_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/vera_23.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/vera_m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/vera_m15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/veram_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/veram_15.jpg -------------------------------------------------------------------------------- /micropython/docs/_static/veram_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/docs/_static/veram_23.jpg -------------------------------------------------------------------------------- /micropython/examples/quickload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/examples/quickload.py -------------------------------------------------------------------------------- /micropython/examples/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/examples/test_basic.py -------------------------------------------------------------------------------- /micropython/examples/test_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/examples/test_raw.py -------------------------------------------------------------------------------- /micropython/examples/vera_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/examples/vera_m15.bin -------------------------------------------------------------------------------- /micropython/examples/vera_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/examples/vera_m15.py -------------------------------------------------------------------------------- /micropython/lib/fdrawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/lib/fdrawer.py -------------------------------------------------------------------------------- /micropython/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/micropython/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/readme.md -------------------------------------------------------------------------------- /tech_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/tech_info.md -------------------------------------------------------------------------------- /ttf-fonts/Arrows.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/Arrows.ttf -------------------------------------------------------------------------------- /ttf-fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /ttf-fonts/Entypo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/Entypo.otf -------------------------------------------------------------------------------- /ttf-fonts/FreeSerif-4aeK.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/FreeSerif-4aeK.ttf -------------------------------------------------------------------------------- /ttf-fonts/PitchDisplayRegularDemo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/PitchDisplayRegularDemo.ttf -------------------------------------------------------------------------------- /ttf-fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /ttf-fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/Vera.ttf -------------------------------------------------------------------------------- /ttf-fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/VeraMono.ttf -------------------------------------------------------------------------------- /ttf-fonts/arrows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/arrows.zip -------------------------------------------------------------------------------- /ttf-fonts/dejavu-fonts-ttf-2.37.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/dejavu-fonts-ttf-2.37.zip -------------------------------------------------------------------------------- /ttf-fonts/entypo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/entypo.zip -------------------------------------------------------------------------------- /ttf-fonts/heydings-common-icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/heydings-common-icons.zip -------------------------------------------------------------------------------- /ttf-fonts/heydings_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/heydings_icons.ttf -------------------------------------------------------------------------------- /ttf-fonts/pitch_display.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/pitch_display.zip -------------------------------------------------------------------------------- /ttf-fonts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/readme.md -------------------------------------------------------------------------------- /ttf-fonts/roboto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/ttf-fonts/roboto.zip -------------------------------------------------------------------------------- /upy-fonts/arrows_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/arrows_15.bin -------------------------------------------------------------------------------- /upy-fonts/arrows_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/arrows_15.py -------------------------------------------------------------------------------- /upy-fonts/arrows_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/arrows_23.bin -------------------------------------------------------------------------------- /upy-fonts/arrows_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/arrows_23.py -------------------------------------------------------------------------------- /upy-fonts/dejav_m10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m10.bin -------------------------------------------------------------------------------- /upy-fonts/dejav_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m10.py -------------------------------------------------------------------------------- /upy-fonts/dejav_m12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m12.bin -------------------------------------------------------------------------------- /upy-fonts/dejav_m12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m12.py -------------------------------------------------------------------------------- /upy-fonts/dejav_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m15.bin -------------------------------------------------------------------------------- /upy-fonts/dejav_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m15.py -------------------------------------------------------------------------------- /upy-fonts/dejav_m20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m20.bin -------------------------------------------------------------------------------- /upy-fonts/dejav_m20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m20.py -------------------------------------------------------------------------------- /upy-fonts/dejav_m8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m8.bin -------------------------------------------------------------------------------- /upy-fonts/dejav_m8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/dejav_m8.py -------------------------------------------------------------------------------- /upy-fonts/etypo_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/etypo_13.bin -------------------------------------------------------------------------------- /upy-fonts/etypo_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/etypo_13.py -------------------------------------------------------------------------------- /upy-fonts/etypo_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/etypo_23.bin -------------------------------------------------------------------------------- /upy-fonts/etypo_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/etypo_23.py -------------------------------------------------------------------------------- /upy-fonts/fserif_m10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m10.bin -------------------------------------------------------------------------------- /upy-fonts/fserif_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m10.py -------------------------------------------------------------------------------- /upy-fonts/fserif_m12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m12.bin -------------------------------------------------------------------------------- /upy-fonts/fserif_m12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m12.py -------------------------------------------------------------------------------- /upy-fonts/fserif_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m15.bin -------------------------------------------------------------------------------- /upy-fonts/fserif_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m15.py -------------------------------------------------------------------------------- /upy-fonts/fserif_m20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m20.bin -------------------------------------------------------------------------------- /upy-fonts/fserif_m20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/fserif_m20.py -------------------------------------------------------------------------------- /upy-fonts/heyd_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/heyd_23.bin -------------------------------------------------------------------------------- /upy-fonts/heyd_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/heyd_23.py -------------------------------------------------------------------------------- /upy-fonts/pitch_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/pitch_15.bin -------------------------------------------------------------------------------- /upy-fonts/pitch_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/pitch_15.py -------------------------------------------------------------------------------- /upy-fonts/pitch_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/pitch_23.bin -------------------------------------------------------------------------------- /upy-fonts/pitch_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/pitch_23.py -------------------------------------------------------------------------------- /upy-fonts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/readme.md -------------------------------------------------------------------------------- /upy-fonts/robotl_m10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m10.bin -------------------------------------------------------------------------------- /upy-fonts/robotl_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m10.py -------------------------------------------------------------------------------- /upy-fonts/robotl_m12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m12.bin -------------------------------------------------------------------------------- /upy-fonts/robotl_m12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m12.py -------------------------------------------------------------------------------- /upy-fonts/robotl_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m15.bin -------------------------------------------------------------------------------- /upy-fonts/robotl_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m15.py -------------------------------------------------------------------------------- /upy-fonts/robotl_m20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m20.bin -------------------------------------------------------------------------------- /upy-fonts/robotl_m20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m20.py -------------------------------------------------------------------------------- /upy-fonts/robotl_m8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m8.bin -------------------------------------------------------------------------------- /upy-fonts/robotl_m8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/robotl_m8.py -------------------------------------------------------------------------------- /upy-fonts/vera_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_10.bin -------------------------------------------------------------------------------- /upy-fonts/vera_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_10.py -------------------------------------------------------------------------------- /upy-fonts/vera_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_15.bin -------------------------------------------------------------------------------- /upy-fonts/vera_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_15.py -------------------------------------------------------------------------------- /upy-fonts/vera_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_23.bin -------------------------------------------------------------------------------- /upy-fonts/vera_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_23.py -------------------------------------------------------------------------------- /upy-fonts/vera_8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_8.bin -------------------------------------------------------------------------------- /upy-fonts/vera_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_8.py -------------------------------------------------------------------------------- /upy-fonts/vera_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_9.bin -------------------------------------------------------------------------------- /upy-fonts/vera_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_9.py -------------------------------------------------------------------------------- /upy-fonts/vera_m10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m10.bin -------------------------------------------------------------------------------- /upy-fonts/vera_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m10.py -------------------------------------------------------------------------------- /upy-fonts/vera_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m15.bin -------------------------------------------------------------------------------- /upy-fonts/vera_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m15.py -------------------------------------------------------------------------------- /upy-fonts/vera_m23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m23.bin -------------------------------------------------------------------------------- /upy-fonts/vera_m23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m23.py -------------------------------------------------------------------------------- /upy-fonts/vera_m8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m8.bin -------------------------------------------------------------------------------- /upy-fonts/vera_m8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m8.py -------------------------------------------------------------------------------- /upy-fonts/vera_m9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m9.bin -------------------------------------------------------------------------------- /upy-fonts/vera_m9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/vera_m9.py -------------------------------------------------------------------------------- /upy-fonts/veram_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_10.bin -------------------------------------------------------------------------------- /upy-fonts/veram_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_10.py -------------------------------------------------------------------------------- /upy-fonts/veram_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_15.bin -------------------------------------------------------------------------------- /upy-fonts/veram_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_15.py -------------------------------------------------------------------------------- /upy-fonts/veram_23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_23.bin -------------------------------------------------------------------------------- /upy-fonts/veram_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_23.py -------------------------------------------------------------------------------- /upy-fonts/veram_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_9.bin -------------------------------------------------------------------------------- /upy-fonts/veram_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_9.py -------------------------------------------------------------------------------- /upy-fonts/veram_m10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m10.bin -------------------------------------------------------------------------------- /upy-fonts/veram_m10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m10.py -------------------------------------------------------------------------------- /upy-fonts/veram_m15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m15.bin -------------------------------------------------------------------------------- /upy-fonts/veram_m15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m15.py -------------------------------------------------------------------------------- /upy-fonts/veram_m23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m23.bin -------------------------------------------------------------------------------- /upy-fonts/veram_m23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m23.py -------------------------------------------------------------------------------- /upy-fonts/veram_m9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m9.bin -------------------------------------------------------------------------------- /upy-fonts/veram_m9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchobby/freetype-generator/HEAD/upy-fonts/veram_m9.py --------------------------------------------------------------------------------