├── .gitignore ├── LICENSE ├── README.md ├── examples ├── covid │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── Makefile │ ├── covid.png │ ├── covid.py │ ├── covid_silhouette.png │ ├── covid_silhouette_a3.svg │ └── covid_to_bitmap.py ├── mdgrid │ └── 1.jpg ├── module_sets │ ├── ms_neon_v1_0000.svg │ ├── ms_neon_v1_0001.svg │ ├── ms_neon_v1_0011.svg │ ├── ms_neon_v1_0101.svg │ ├── ms_neon_v1_0111.svg │ ├── ms_neon_v1_1111.svg │ ├── ms_thin_v1_0000.svg │ ├── ms_thin_v1_0001.svg │ ├── ms_thin_v1_0011.svg │ ├── ms_thin_v1_0101.svg │ ├── ms_thin_v1_0111.svg │ └── ms_thin_v1_1111.svg ├── neon_modules │ ├── Makefile │ ├── neon_module_a4.svg │ ├── optimize.vpy │ └── pipeline.vpy └── wheel_page │ ├── Makefile │ ├── wheel_page.jpg │ └── wheel_page.svg ├── pyproject.toml ├── requirements.txt ├── setup.py ├── tests ├── test_oldcircles.py └── test_variablewidth.py └── vpype_explorations ├── alien.py ├── circlecrop.py ├── fake3d.py ├── fill.py ├── fracture.py ├── mdgrid.py ├── moduleset.py ├── oldcircles.py ├── poly.py ├── spiro.py ├── variablewidth.py └── wheels.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/README.md -------------------------------------------------------------------------------- /examples/covid/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/1.jpg -------------------------------------------------------------------------------- /examples/covid/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/2.jpg -------------------------------------------------------------------------------- /examples/covid/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/3.jpg -------------------------------------------------------------------------------- /examples/covid/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/4.jpg -------------------------------------------------------------------------------- /examples/covid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/Makefile -------------------------------------------------------------------------------- /examples/covid/covid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/covid.png -------------------------------------------------------------------------------- /examples/covid/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/covid.py -------------------------------------------------------------------------------- /examples/covid/covid_silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/covid_silhouette.png -------------------------------------------------------------------------------- /examples/covid/covid_silhouette_a3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/covid_silhouette_a3.svg -------------------------------------------------------------------------------- /examples/covid/covid_to_bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/covid/covid_to_bitmap.py -------------------------------------------------------------------------------- /examples/mdgrid/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/mdgrid/1.jpg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_0000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_0000.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_0001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_0001.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_0011.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_0011.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_0101.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_0101.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_0111.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_0111.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_neon_v1_1111.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_neon_v1_1111.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_0000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_0000.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_0001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_0001.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_0011.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_0011.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_0101.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_0101.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_0111.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_0111.svg -------------------------------------------------------------------------------- /examples/module_sets/ms_thin_v1_1111.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/module_sets/ms_thin_v1_1111.svg -------------------------------------------------------------------------------- /examples/neon_modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/neon_modules/Makefile -------------------------------------------------------------------------------- /examples/neon_modules/neon_module_a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/neon_modules/neon_module_a4.svg -------------------------------------------------------------------------------- /examples/neon_modules/optimize.vpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/neon_modules/optimize.vpy -------------------------------------------------------------------------------- /examples/neon_modules/pipeline.vpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/neon_modules/pipeline.vpy -------------------------------------------------------------------------------- /examples/wheel_page/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/wheel_page/Makefile -------------------------------------------------------------------------------- /examples/wheel_page/wheel_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/wheel_page/wheel_page.jpg -------------------------------------------------------------------------------- /examples/wheel_page/wheel_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/examples/wheel_page/wheel_page.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_oldcircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/tests/test_oldcircles.py -------------------------------------------------------------------------------- /tests/test_variablewidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/tests/test_variablewidth.py -------------------------------------------------------------------------------- /vpype_explorations/alien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/alien.py -------------------------------------------------------------------------------- /vpype_explorations/circlecrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/circlecrop.py -------------------------------------------------------------------------------- /vpype_explorations/fake3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/fake3d.py -------------------------------------------------------------------------------- /vpype_explorations/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/fill.py -------------------------------------------------------------------------------- /vpype_explorations/fracture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/fracture.py -------------------------------------------------------------------------------- /vpype_explorations/mdgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/mdgrid.py -------------------------------------------------------------------------------- /vpype_explorations/moduleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/moduleset.py -------------------------------------------------------------------------------- /vpype_explorations/oldcircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/oldcircles.py -------------------------------------------------------------------------------- /vpype_explorations/poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/poly.py -------------------------------------------------------------------------------- /vpype_explorations/spiro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/spiro.py -------------------------------------------------------------------------------- /vpype_explorations/variablewidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/variablewidth.py -------------------------------------------------------------------------------- /vpype_explorations/wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abey79/vpype-explorations/HEAD/vpype_explorations/wheels.py --------------------------------------------------------------------------------