├── .gitignore ├── LICENSE ├── README.md ├── fablab_box_generator.inx ├── fablab_box_generator.py ├── fablab_box_lib.py ├── fablab_grayscale.bmp ├── fablab_headless_inkscape.sh ├── fablab_lib.py ├── fablab_monochrome.bmp ├── fablab_path_lib.py ├── fablab_path_to_polygon.inx ├── fablab_path_to_polygon.py ├── fablab_proxxon_lathe.inx ├── fablab_proxxon_lathe.py ├── fablab_roland_eps.inx ├── fablab_roland_eps.py ├── fablab_tabs_generator.inx ├── fablab_tabs_generator.py ├── fablab_tsf.inx.bak ├── fablab_tsf.py ├── fablab_tsf2.inx.bak ├── fablab_tsf2svg_lib.py ├── fablab_tsf_cut.inx ├── fablab_tsf_engrave.inx ├── fablab_tsf_lib.py ├── install_linux.sh └── palettes └── trotec_decoupeuse_laser.gpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/README.md -------------------------------------------------------------------------------- /fablab_box_generator.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_box_generator.inx -------------------------------------------------------------------------------- /fablab_box_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_box_generator.py -------------------------------------------------------------------------------- /fablab_box_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_box_lib.py -------------------------------------------------------------------------------- /fablab_grayscale.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_grayscale.bmp -------------------------------------------------------------------------------- /fablab_headless_inkscape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_headless_inkscape.sh -------------------------------------------------------------------------------- /fablab_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_lib.py -------------------------------------------------------------------------------- /fablab_monochrome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_monochrome.bmp -------------------------------------------------------------------------------- /fablab_path_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_path_lib.py -------------------------------------------------------------------------------- /fablab_path_to_polygon.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_path_to_polygon.inx -------------------------------------------------------------------------------- /fablab_path_to_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_path_to_polygon.py -------------------------------------------------------------------------------- /fablab_proxxon_lathe.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_proxxon_lathe.inx -------------------------------------------------------------------------------- /fablab_proxxon_lathe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_proxxon_lathe.py -------------------------------------------------------------------------------- /fablab_roland_eps.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_roland_eps.inx -------------------------------------------------------------------------------- /fablab_roland_eps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_roland_eps.py -------------------------------------------------------------------------------- /fablab_tabs_generator.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tabs_generator.inx -------------------------------------------------------------------------------- /fablab_tabs_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tabs_generator.py -------------------------------------------------------------------------------- /fablab_tsf.inx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf.inx.bak -------------------------------------------------------------------------------- /fablab_tsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf.py -------------------------------------------------------------------------------- /fablab_tsf2.inx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf2.inx.bak -------------------------------------------------------------------------------- /fablab_tsf2svg_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf2svg_lib.py -------------------------------------------------------------------------------- /fablab_tsf_cut.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf_cut.inx -------------------------------------------------------------------------------- /fablab_tsf_engrave.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf_engrave.inx -------------------------------------------------------------------------------- /fablab_tsf_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/fablab_tsf_lib.py -------------------------------------------------------------------------------- /install_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/install_linux.sh -------------------------------------------------------------------------------- /palettes/trotec_decoupeuse_laser.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumblebeefr/fablab-inkscape-plugins/HEAD/palettes/trotec_decoupeuse_laser.gpl --------------------------------------------------------------------------------