├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── exempleSheet.json ├── generator.py ├── main.py ├── mainWindow.py ├── meca └── philipsScrew.STEP ├── resources └── icon.svg ├── sticker.py ├── stickerForm.py └── updatedOffscreenRenderer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/README.md -------------------------------------------------------------------------------- /exempleSheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/exempleSheet.json -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/generator.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/main.py -------------------------------------------------------------------------------- /mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/mainWindow.py -------------------------------------------------------------------------------- /meca/philipsScrew.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/meca/philipsScrew.STEP -------------------------------------------------------------------------------- /resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/resources/icon.svg -------------------------------------------------------------------------------- /sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/sticker.py -------------------------------------------------------------------------------- /stickerForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/stickerForm.py -------------------------------------------------------------------------------- /updatedOffscreenRenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clement-roblot/Gridfinity-Label-Generator/HEAD/updatedOffscreenRenderer.py --------------------------------------------------------------------------------