├── .gitignore ├── LICENSE ├── README.md ├── glyph_tables.py ├── img ├── badloft.png ├── cherokee.jpg ├── corners1.png ├── corners2.png ├── demo1.png ├── loft.png ├── loft_nonmani.png ├── pvgm1.png ├── pvgm2.png └── typeball.jpg ├── oneletter.scad ├── selectric_generator.py ├── typeball_blank.STL └── typeball_blank.scad /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/README.md -------------------------------------------------------------------------------- /glyph_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/glyph_tables.py -------------------------------------------------------------------------------- /img/badloft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/badloft.png -------------------------------------------------------------------------------- /img/cherokee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/cherokee.jpg -------------------------------------------------------------------------------- /img/corners1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/corners1.png -------------------------------------------------------------------------------- /img/corners2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/corners2.png -------------------------------------------------------------------------------- /img/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/demo1.png -------------------------------------------------------------------------------- /img/loft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/loft.png -------------------------------------------------------------------------------- /img/loft_nonmani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/loft_nonmani.png -------------------------------------------------------------------------------- /img/pvgm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/pvgm1.png -------------------------------------------------------------------------------- /img/pvgm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/pvgm2.png -------------------------------------------------------------------------------- /img/typeball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/img/typeball.jpg -------------------------------------------------------------------------------- /oneletter.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/oneletter.scad -------------------------------------------------------------------------------- /selectric_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/selectric_generator.py -------------------------------------------------------------------------------- /typeball_blank.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/typeball_blank.STL -------------------------------------------------------------------------------- /typeball_blank.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/settinger/selectric_typeballs/HEAD/typeball_blank.scad --------------------------------------------------------------------------------