├── .gitignore ├── G1 ├── Control.pde ├── G1.pde ├── Helpers.pde └── data │ └── f14.vlw ├── G2 ├── Control.pde ├── G2.pde ├── GShape.pde ├── Helpers.pde └── data │ ├── f14.vlw │ └── hp1345_font.txt ├── LICENSE └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/.gitignore -------------------------------------------------------------------------------- /G1/Control.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G1/Control.pde -------------------------------------------------------------------------------- /G1/G1.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G1/G1.pde -------------------------------------------------------------------------------- /G1/Helpers.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G1/Helpers.pde -------------------------------------------------------------------------------- /G1/data/f14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G1/data/f14.vlw -------------------------------------------------------------------------------- /G2/Control.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/Control.pde -------------------------------------------------------------------------------- /G2/G2.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/G2.pde -------------------------------------------------------------------------------- /G2/GShape.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/GShape.pde -------------------------------------------------------------------------------- /G2/Helpers.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/Helpers.pde -------------------------------------------------------------------------------- /G2/data/f14.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/data/f14.vlw -------------------------------------------------------------------------------- /G2/data/hp1345_font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/G2/data/hp1345_font.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertdfgcvb/Genau/HEAD/README --------------------------------------------------------------------------------