├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _graphics ├── app-icon.ico ├── cutpaths.ico ├── export1_angular.ico ├── feed rate.ico ├── logo.png ├── open1_plasticxp.ico ├── puzzle.ico ├── rasterfill.ico ├── rotate right.ico ├── ruler_itoolbar2.ico ├── scale-icon.ico ├── screenshot2.png ├── splitbypage.ico ├── tile.ico ├── z-plunge.ico ├── zoom +_itoolbar2.ico └── zoom -_itoolbar2.ico ├── changelog.txt ├── releases ├── Mac │ ├── SVGtoGCODE Standalone.zip │ └── SVGtoGCODE.zip └── Windows │ ├── SVGtoGCODESetupV1.0.1.exe │ ├── SVGtoGCODESetupV1.0.2.exe │ ├── SVGtoGCODESetupV1.0.3.exe │ ├── SVGtoGCODESetupV1.0.5.exe │ ├── SVGtoGCODESetupV1.0.6.exe │ ├── SVGtoGCODESetupV1.0.9.exe │ ├── SVGtoGCODESetupV1.1.0.exe │ ├── SVGtoGCODESetupV1.1.2.exe │ ├── SVGtoGCODESetupV1.1.6.exe │ ├── SVGtoGCODESetupV1.1.7.exe │ ├── SVGtoGCODESetupV1.1.8.exe │ ├── SVGtoGCODESetupV1.1.9.exe │ ├── SVGtoGCODESetupV1.2.0.exe │ ├── SVGtoGCODESetupV1.2.1.exe │ ├── SVGtoGCODESetupV1.2.2.exe │ ├── SVGtoGCODESetupV1.2.3.exe │ ├── SVGtoGCODESetupV1.2.4.exe │ ├── SVGtoGCODESetupV1.2.5.exe │ └── SVGtoGCODESetupV1.2.6.exe ├── samples └── Sample - Paw Print.svg └── src ├── Bezier.bas ├── ColorCode.bas ├── GeneralFunctions.bas ├── Polygons.bas ├── Rasterize.bas ├── SVGParse.bas ├── SVGtoGCODE.exe ├── SVGtoGCODE.vbp ├── SVGtoGCODE.vbw ├── SVNtoGCODE.nsi ├── _Library ├── ChilkatXml.dll ├── Comdlg32.ocx ├── SSubTmr6.dll ├── vbalIml6.ocx └── vbalTbar6.ocx ├── form1.frm ├── form1.frx ├── frmExport.frm ├── frmScale.frm ├── frmScale.frx ├── frmTile.frm └── mcPopupMenu.cls /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/README.md -------------------------------------------------------------------------------- /_graphics/app-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/app-icon.ico -------------------------------------------------------------------------------- /_graphics/cutpaths.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/cutpaths.ico -------------------------------------------------------------------------------- /_graphics/export1_angular.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/export1_angular.ico -------------------------------------------------------------------------------- /_graphics/feed rate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/feed rate.ico -------------------------------------------------------------------------------- /_graphics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/logo.png -------------------------------------------------------------------------------- /_graphics/open1_plasticxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/open1_plasticxp.ico -------------------------------------------------------------------------------- /_graphics/puzzle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/puzzle.ico -------------------------------------------------------------------------------- /_graphics/rasterfill.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/rasterfill.ico -------------------------------------------------------------------------------- /_graphics/rotate right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/rotate right.ico -------------------------------------------------------------------------------- /_graphics/ruler_itoolbar2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/ruler_itoolbar2.ico -------------------------------------------------------------------------------- /_graphics/scale-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/scale-icon.ico -------------------------------------------------------------------------------- /_graphics/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/screenshot2.png -------------------------------------------------------------------------------- /_graphics/splitbypage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/splitbypage.ico -------------------------------------------------------------------------------- /_graphics/tile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/tile.ico -------------------------------------------------------------------------------- /_graphics/z-plunge.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/z-plunge.ico -------------------------------------------------------------------------------- /_graphics/zoom +_itoolbar2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/zoom +_itoolbar2.ico -------------------------------------------------------------------------------- /_graphics/zoom -_itoolbar2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/_graphics/zoom -_itoolbar2.ico -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/changelog.txt -------------------------------------------------------------------------------- /releases/Mac/SVGtoGCODE Standalone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Mac/SVGtoGCODE Standalone.zip -------------------------------------------------------------------------------- /releases/Mac/SVGtoGCODE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Mac/SVGtoGCODE.zip -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.1.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.2.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.3.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.5.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.6.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.0.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.0.9.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.0.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.2.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.6.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.7.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.8.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.1.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.1.9.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.0.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.1.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.2.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.3.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.4.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.5.exe -------------------------------------------------------------------------------- /releases/Windows/SVGtoGCODESetupV1.2.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/releases/Windows/SVGtoGCODESetupV1.2.6.exe -------------------------------------------------------------------------------- /samples/Sample - Paw Print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/samples/Sample - Paw Print.svg -------------------------------------------------------------------------------- /src/Bezier.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/Bezier.bas -------------------------------------------------------------------------------- /src/ColorCode.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/ColorCode.bas -------------------------------------------------------------------------------- /src/GeneralFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/GeneralFunctions.bas -------------------------------------------------------------------------------- /src/Polygons.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/Polygons.bas -------------------------------------------------------------------------------- /src/Rasterize.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/Rasterize.bas -------------------------------------------------------------------------------- /src/SVGParse.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/SVGParse.bas -------------------------------------------------------------------------------- /src/SVGtoGCODE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/SVGtoGCODE.exe -------------------------------------------------------------------------------- /src/SVGtoGCODE.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/SVGtoGCODE.vbp -------------------------------------------------------------------------------- /src/SVGtoGCODE.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/SVGtoGCODE.vbw -------------------------------------------------------------------------------- /src/SVNtoGCODE.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/SVNtoGCODE.nsi -------------------------------------------------------------------------------- /src/_Library/ChilkatXml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/_Library/ChilkatXml.dll -------------------------------------------------------------------------------- /src/_Library/Comdlg32.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/_Library/Comdlg32.ocx -------------------------------------------------------------------------------- /src/_Library/SSubTmr6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/_Library/SSubTmr6.dll -------------------------------------------------------------------------------- /src/_Library/vbalIml6.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/_Library/vbalIml6.ocx -------------------------------------------------------------------------------- /src/_Library/vbalTbar6.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/_Library/vbalTbar6.ocx -------------------------------------------------------------------------------- /src/form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/form1.frm -------------------------------------------------------------------------------- /src/form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/form1.frx -------------------------------------------------------------------------------- /src/frmExport.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/frmExport.frm -------------------------------------------------------------------------------- /src/frmScale.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/frmScale.frm -------------------------------------------------------------------------------- /src/frmScale.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/frmScale.frx -------------------------------------------------------------------------------- /src/frmTile.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/frmTile.frm -------------------------------------------------------------------------------- /src/mcPopupMenu.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avwuff/SVG-to-GCode/HEAD/src/mcPopupMenu.cls --------------------------------------------------------------------------------