├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── DAC05OffsetPolygon.pdf ├── Makefile ├── README.md ├── TODO.adoc ├── cut-part.jpg ├── example-toolpath-0.png ├── example-toolpath-1.png ├── gcoder.py ├── show-svg ├── svg2gcode ├── svg2gcode.adoc ├── test-svg └── test ├── .gitignore ├── big-jumble ├── expected.ngc └── test.py ├── diff-gcode ├── g0 ├── expected.ngc └── test.py ├── runtests ├── svg2gcode ├── .gitignore ├── 2-paths │ ├── 2-paths.svg │ ├── new-job-file │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── offset-2 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── 2-segments │ ├── arc-arc │ │ ├── test.s2g │ │ └── test.svg │ └── line-arc │ │ ├── test.s2g │ │ └── test.svg ├── 5-shapes │ ├── 5-shapes.svg │ ├── path-override │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── pocket │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── bezier │ ├── bezier.svg │ ├── offset-1 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-15.68 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-2 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-big-negative │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-100 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-small-negative │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── tabs-plunge │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── tabs-ramp │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── blob │ ├── blob.svg │ ├── offset │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── pocket │ │ ├── expected.ngc │ │ ├── skip │ │ ├── test.s2g │ │ └── test.svg ├── bones │ ├── bones.svg │ ├── holes │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── outline │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── duplicate │ ├── side.svg │ ├── side │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── svg-origin │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── elliptic-arc │ ├── elliptic-arc.svg │ └── offsets │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── github-issue-1 │ ├── expected.ngc │ ├── test.args │ ├── test.s2g │ └── test.svg ├── growing-arcs │ ├── README │ ├── engrave-ramp-0.01 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── growing-arcs.svg │ ├── offset-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-20 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-30 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-14 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-20 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── offset-minus-8 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── house │ ├── engrave-no-ramp │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── engrave-ramp-0.1 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── engrave-ramp-multipass │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── house.svg │ ├── offset-0.01 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-5 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-0.01 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-40 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-finishing-none │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-finishing-progressive │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-finishing-single-pass │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── tabs-plunge │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── tabs-ramp │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── many-pocket-areas │ └── 0 │ │ ├── many-pocket-areas.svg │ │ └── offset │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── mini-liner │ ├── engrave │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── mini-liner-outline-simple.svg │ └── pocket │ │ ├── expected.ngc │ │ ├── skip │ │ ├── test.s2g │ │ └── test.svg ├── pinched-polygon-2 │ ├── offset-20 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-20 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── pinched-polygon-2.svg ├── pinched-polygon-3 │ ├── offset-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-12 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-6 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-8 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── pinched-polygon-3.svg ├── pinched-polygon │ ├── offset-12 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-13 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-2 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-15 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pinched-polygon.svg │ └── pocket │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── plug │ ├── plug.svg │ ├── tabs-ramp-0 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ ├── tabs-ramp-1 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── tabs-ramp-2 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── profile0 │ ├── many-offsets │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-24 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-10 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-1 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pocket-2 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── profile0.svg ├── profile1 │ ├── offset-4.7625 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── profile1.svg ├── profile2 │ ├── offset-4.7625 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── profile2.svg ├── rounded-square-different-radii │ ├── offset-1 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-13 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-26 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-41 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-50 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-60 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-70 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-80 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-13 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── rounded-square-different-radii.svg ├── rounded-square-equal-radii │ ├── offset-1 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-17 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-4.99 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-4.999 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-5 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── offset-minus-20 │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── rounded-square-equal-radii.svg ├── scaled │ ├── engrave │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── scaled.svg ├── short-path-with-ramp │ ├── 0 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg │ └── 1 │ │ ├── expected.ngc │ │ ├── test.args │ │ ├── test.s2g │ │ └── test.svg ├── svg-units │ ├── cm │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── in │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── mm │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── path-uses-percent │ │ ├── expected.ngc │ │ ├── skip │ │ ├── test.s2g │ │ └── test.svg │ ├── path-uses-real-units │ │ ├── expected.ngc │ │ ├── skip │ │ ├── test.s2g │ │ └── test.svg │ ├── pc │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── pt │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── px │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg ├── svg-viewBox │ ├── README.md │ ├── expected.ngc │ ├── test.s2g │ └── test.svg ├── translate │ ├── drill │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ ├── holy-house.svg │ ├── offset │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg │ └── pocket │ │ ├── expected.ngc │ │ ├── test.s2g │ │ └── test.svg └── truss │ ├── offset │ ├── expected.ngc │ ├── test.args │ ├── test.s2g │ └── test.svg │ ├── pocket │ ├── expected.ngc │ ├── test.args │ ├── test.s2g │ └── test.svg │ └── truss.svg ├── unittest └── test-gcoder.py └── z_path2 ├── expected.ngc └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | svg2gcode.1 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/COPYING -------------------------------------------------------------------------------- /DAC05OffsetPolygon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/DAC05OffsetPolygon.pdf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/README.md -------------------------------------------------------------------------------- /TODO.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/TODO.adoc -------------------------------------------------------------------------------- /cut-part.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/cut-part.jpg -------------------------------------------------------------------------------- /example-toolpath-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/example-toolpath-0.png -------------------------------------------------------------------------------- /example-toolpath-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/example-toolpath-1.png -------------------------------------------------------------------------------- /gcoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/gcoder.py -------------------------------------------------------------------------------- /show-svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/show-svg -------------------------------------------------------------------------------- /svg2gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/svg2gcode -------------------------------------------------------------------------------- /svg2gcode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/svg2gcode.adoc -------------------------------------------------------------------------------- /test-svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test-svg -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/big-jumble/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/big-jumble/expected.ngc -------------------------------------------------------------------------------- /test/big-jumble/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/big-jumble/test.py -------------------------------------------------------------------------------- /test/diff-gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/diff-gcode -------------------------------------------------------------------------------- /test/g0/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/g0/expected.ngc -------------------------------------------------------------------------------- /test/g0/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/g0/test.py -------------------------------------------------------------------------------- /test/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/runtests -------------------------------------------------------------------------------- /test/svg2gcode/.gitignore: -------------------------------------------------------------------------------- 1 | *.stderr 2 | -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/2-paths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-paths/2-paths.svg -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/new-job-file/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-paths/new-job-file/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/new-job-file/test.args: -------------------------------------------------------------------------------- 1 | --feed 1000 2 | --z-cut-depth=-1.5 3 | -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/new-job-file/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-paths/new-job-file/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/new-job-file/test.svg: -------------------------------------------------------------------------------- 1 | ../2-paths.svg -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/offset-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-paths/offset-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/offset-2/test.args: -------------------------------------------------------------------------------- 1 | --z-cut-depth=-1.5 2 | -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/offset-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-paths/offset-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/2-paths/offset-2/test.svg: -------------------------------------------------------------------------------- 1 | ../2-paths.svg -------------------------------------------------------------------------------- /test/svg2gcode/2-segments/arc-arc/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-segments/arc-arc/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/2-segments/arc-arc/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-segments/arc-arc/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/2-segments/line-arc/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-segments/line-arc/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/2-segments/line-arc/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/2-segments/line-arc/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/5-shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/5-shapes.svg -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/path-override/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/path-override/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/path-override/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/path-override/test.args -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/path-override/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/path-override/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/path-override/test.svg: -------------------------------------------------------------------------------- 1 | ../5-shapes.svg -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/pocket-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/pocket-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket-2/test.svg: -------------------------------------------------------------------------------- 1 | ../5-shapes.svg -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/5-shapes/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/5-shapes/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../5-shapes.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/bezier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-1/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-10/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-15.68/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-15.68/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-15.68/test.args: -------------------------------------------------------------------------------- 1 | --z-cut-depth=-0.5 2 | -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-15.68/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-15.68/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-15.68/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-2/test.args: -------------------------------------------------------------------------------- 1 | --z-cut-depth=-1.5 2 | -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-2/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-big-negative/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-big-negative/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-big-negative/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-big-negative/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-big-negative/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-minus-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-minus-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-10/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-100/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-minus-100/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-100/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-minus-100/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-minus-100/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-small-negative/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-small-negative/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-small-negative/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/offset-small-negative/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/offset-small-negative/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-plunge/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/tabs-plunge/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-plunge/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/tabs-plunge/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-plunge/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-ramp/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/tabs-ramp/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-ramp/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bezier/tabs-ramp/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bezier/tabs-ramp/test.svg: -------------------------------------------------------------------------------- 1 | ../bezier.svg -------------------------------------------------------------------------------- /test/svg2gcode/blob/blob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/blob.svg -------------------------------------------------------------------------------- /test/svg2gcode/blob/offset/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/offset/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/blob/offset/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/offset/test.args -------------------------------------------------------------------------------- /test/svg2gcode/blob/offset/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/offset/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/blob/offset/test.svg: -------------------------------------------------------------------------------- 1 | ../blob.svg -------------------------------------------------------------------------------- /test/svg2gcode/blob/pocket/expected.ngc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/svg2gcode/blob/pocket/skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/pocket/skip -------------------------------------------------------------------------------- /test/svg2gcode/blob/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/blob/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/blob/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../blob.svg -------------------------------------------------------------------------------- /test/svg2gcode/bones/bones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/bones.svg -------------------------------------------------------------------------------- /test/svg2gcode/bones/holes/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/holes/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bones/holes/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/holes/test.args -------------------------------------------------------------------------------- /test/svg2gcode/bones/holes/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/holes/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bones/holes/test.svg: -------------------------------------------------------------------------------- 1 | ../bones.svg -------------------------------------------------------------------------------- /test/svg2gcode/bones/outline/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/outline/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/bones/outline/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/outline/test.args -------------------------------------------------------------------------------- /test/svg2gcode/bones/outline/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/bones/outline/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/bones/outline/test.svg: -------------------------------------------------------------------------------- 1 | ../bones.svg -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/side.svg -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/side/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/side/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/side/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/side/test.args -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/side/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/side/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/side/test.svg: -------------------------------------------------------------------------------- 1 | ../side.svg -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/svg-origin/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/svg-origin/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/svg-origin/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/svg-origin/test.args -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/svg-origin/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/duplicate/svg-origin/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/duplicate/svg-origin/test.svg: -------------------------------------------------------------------------------- 1 | ../side.svg -------------------------------------------------------------------------------- /test/svg2gcode/elliptic-arc/elliptic-arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/elliptic-arc/elliptic-arc.svg -------------------------------------------------------------------------------- /test/svg2gcode/elliptic-arc/offsets/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/elliptic-arc/offsets/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/elliptic-arc/offsets/test.args: -------------------------------------------------------------------------------- 1 | --z-cut-depth=-1.5 2 | -------------------------------------------------------------------------------- /test/svg2gcode/elliptic-arc/offsets/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/elliptic-arc/offsets/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/elliptic-arc/offsets/test.svg: -------------------------------------------------------------------------------- 1 | ../elliptic-arc.svg -------------------------------------------------------------------------------- /test/svg2gcode/github-issue-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/github-issue-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/github-issue-1/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/github-issue-1/test.args -------------------------------------------------------------------------------- /test/svg2gcode/github-issue-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/github-issue-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/github-issue-1/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/github-issue-1/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/README -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/engrave-ramp-0.01/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/engrave-ramp-0.01/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/engrave-ramp-0.01/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/engrave-ramp-0.01/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/engrave-ramp-0.01/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/growing-arcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-10/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-2/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-20/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-20/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-20/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-20/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-20/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-30/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-30/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-30/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-30/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-30/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-10/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-14/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-14/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-14/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-14/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-14/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-2/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-20/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-20/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-20/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-20/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-20/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-8/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-8/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-8/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/growing-arcs/offset-minus-8/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/growing-arcs/offset-minus-8/test.svg: -------------------------------------------------------------------------------- 1 | ../growing-arcs.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-no-ramp/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-no-ramp/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-no-ramp/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-no-ramp/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-no-ramp/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-0.1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-ramp-0.1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-0.1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-ramp-0.1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-0.1/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-multipass/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-ramp-multipass/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-multipass/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/engrave-ramp-multipass/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/engrave-ramp-multipass/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-0.01/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-0.01/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-0.01/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-0.01/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-0.01/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-10/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-2/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-5/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-5/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-5/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-5/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-5/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-0.01/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-0.01/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-0.01/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-0.01/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-0.01/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-10/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-2/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-40/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-40/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-40/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/offset-minus-40/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/offset-minus-40/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-none/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-none/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-none/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-none/test.args -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-none/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-none/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-none/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-progressive/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-progressive/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-progressive/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-progressive/test.args -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-progressive/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-progressive/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-progressive/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-single-pass/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-single-pass/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-single-pass/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-single-pass/test.args -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-single-pass/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket-finishing-single-pass/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket-finishing-single-pass/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-plunge/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/tabs-plunge/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-plunge/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/tabs-plunge/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-plunge/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-ramp/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/tabs-ramp/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-ramp/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/house/tabs-ramp/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/house/tabs-ramp/test.svg: -------------------------------------------------------------------------------- 1 | ../house.svg -------------------------------------------------------------------------------- /test/svg2gcode/many-pocket-areas/0/many-pocket-areas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/many-pocket-areas/0/many-pocket-areas.svg -------------------------------------------------------------------------------- /test/svg2gcode/many-pocket-areas/0/offset/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/many-pocket-areas/0/offset/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/many-pocket-areas/0/offset/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/many-pocket-areas/0/offset/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/many-pocket-areas/0/offset/test.svg: -------------------------------------------------------------------------------- 1 | ../many-pocket-areas.svg -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/engrave/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/engrave/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/engrave/test.args: -------------------------------------------------------------------------------- 1 | --path 1 2 | -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/engrave/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/engrave/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/engrave/test.svg: -------------------------------------------------------------------------------- 1 | ../mini-liner-outline-simple.svg -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/mini-liner-outline-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/mini-liner-outline-simple.svg -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/pocket/skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/pocket/skip -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/mini-liner/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/mini-liner/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../mini-liner-outline-simple.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-20/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-2/offset-20/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-20/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-2/offset-20/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-20/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-2.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-minus-20/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-2/offset-minus-20/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-minus-20/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-2/offset-minus-20/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/offset-minus-20/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-2.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-2/pinched-polygon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-2/pinched-polygon-2.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-10/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-3.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-12/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-12/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-12/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-12/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-12/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-3.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-6/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-6/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-6/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-6/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-6/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-3.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-8/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-8/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-8/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/offset-8/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/offset-8/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon-3.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon-3/pinched-polygon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon-3/pinched-polygon-3.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-12/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-12/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-12/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-12/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-12/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-13/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-13/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-13/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-13/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-13/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-2/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-minus-15/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-minus-15/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-minus-15/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/offset-minus-15/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/offset-minus-15/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/pinched-polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/pinched-polygon/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/pinched-polygon/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../pinched-polygon.svg -------------------------------------------------------------------------------- /test/svg2gcode/plug/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/plug.svg -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-0/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-0/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-0/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-0/test.args -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-0/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-0/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-0/test.svg: -------------------------------------------------------------------------------- 1 | ../plug.svg -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-1/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-1/test.args -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-1/test.svg: -------------------------------------------------------------------------------- 1 | ../plug.svg -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-2/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-2/test.args -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/plug/tabs-ramp-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/plug/tabs-ramp-2/test.svg: -------------------------------------------------------------------------------- 1 | ../plug.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/many-offsets/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/many-offsets/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile0/many-offsets/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/many-offsets/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile0/many-offsets/test.svg: -------------------------------------------------------------------------------- 1 | ../profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-24/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/offset-24/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-24/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/offset-24/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-24/test.svg: -------------------------------------------------------------------------------- 1 | ../profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-minus-10/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/offset-minus-10/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-minus-10/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/offset-minus-10/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile0/offset-minus-10/test.svg: -------------------------------------------------------------------------------- 1 | ../profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/pocket-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/pocket-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-1/test.svg: -------------------------------------------------------------------------------- 1 | ../profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/pocket-2/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-2/test.args: -------------------------------------------------------------------------------- 1 | --z-cut-depth -5 2 | -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-2/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/pocket-2/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile0/pocket-2/test.svg: -------------------------------------------------------------------------------- 1 | ../profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile0/profile0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile0/profile0.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile1/offset-4.7625/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile1/offset-4.7625/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile1/offset-4.7625/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile1/offset-4.7625/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile1/offset-4.7625/test.svg: -------------------------------------------------------------------------------- 1 | ../profile1.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile1/profile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile1/profile1.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile2/offset-4.7625/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile2/offset-4.7625/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/profile2/offset-4.7625/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile2/offset-4.7625/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/profile2/offset-4.7625/test.svg: -------------------------------------------------------------------------------- 1 | ../profile2.svg -------------------------------------------------------------------------------- /test/svg2gcode/profile2/profile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/profile2/profile2.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-1/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-13/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-13/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-13/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-13/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-13/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-26/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-26/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-26/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-26/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-26/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-41/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-41/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-41/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-41/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-41/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-50/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-50/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-50/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-50/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-50/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-60/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-60/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-60/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-60/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-60/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-70/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-70/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-70/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-70/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-70/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-80/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-80/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-80/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-80/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-80/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-minus-13/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-minus-13/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-minus-13/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/offset-minus-13/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/offset-minus-13/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-different-radii/rounded-square-different-radii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-different-radii/rounded-square-different-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-1/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-17/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-17/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-17/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-17/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-17/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.99/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-4.99/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.99/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-4.99/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.99/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.999/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-4.999/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.999/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-4.999/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-4.999/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-5/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-5/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-5/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-5/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-5/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-minus-20/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-minus-20/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-minus-20/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/offset-minus-20/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/offset-minus-20/test.svg: -------------------------------------------------------------------------------- 1 | ../rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/rounded-square-equal-radii/rounded-square-equal-radii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/rounded-square-equal-radii/rounded-square-equal-radii.svg -------------------------------------------------------------------------------- /test/svg2gcode/scaled/engrave/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/scaled/engrave/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/scaled/engrave/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/scaled/engrave/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/scaled/engrave/test.svg: -------------------------------------------------------------------------------- 1 | ../scaled.svg -------------------------------------------------------------------------------- /test/svg2gcode/scaled/scaled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/scaled/scaled.svg -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/0/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/0/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/0/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/0/test.args -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/0/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/0/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/0/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/0/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/1/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/1/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/1/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/1/test.args -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/1/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/1/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/short-path-with-ramp/1/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/short-path-with-ramp/1/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/cm/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/cm/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/cm/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/cm/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/cm/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/cm/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/in/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/in/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/in/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/in/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/in/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/in/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/mm/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/mm/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/mm/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/mm/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/mm/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/mm/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-percent/expected.ngc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-percent/skip: -------------------------------------------------------------------------------- 1 | this is valid SVG, but svgpathlib fails to parse it 2 | -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-percent/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/path-uses-percent/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-percent/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/path-uses-percent/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-real-units/expected.ngc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-real-units/skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/path-uses-real-units/skip -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-real-units/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/path-uses-real-units/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/path-uses-real-units/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/path-uses-real-units/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pc/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pc/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pc/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pc/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pc/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pc/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pt/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pt/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pt/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pt/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/pt/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/pt/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/px/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/px/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/px/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/px/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-units/px/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-units/px/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/svg-viewBox/README.md: -------------------------------------------------------------------------------- 1 | This SVG has a funny view box. 2 | -------------------------------------------------------------------------------- /test/svg2gcode/svg-viewBox/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-viewBox/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/svg-viewBox/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-viewBox/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/svg-viewBox/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/svg-viewBox/test.svg -------------------------------------------------------------------------------- /test/svg2gcode/translate/drill/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/drill/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/translate/drill/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/drill/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/translate/drill/test.svg: -------------------------------------------------------------------------------- 1 | ../holy-house.svg -------------------------------------------------------------------------------- /test/svg2gcode/translate/holy-house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/holy-house.svg -------------------------------------------------------------------------------- /test/svg2gcode/translate/offset/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/offset/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/translate/offset/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/offset/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/translate/offset/test.svg: -------------------------------------------------------------------------------- 1 | ../holy-house.svg -------------------------------------------------------------------------------- /test/svg2gcode/translate/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/translate/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/translate/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/translate/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../holy-house.svg -------------------------------------------------------------------------------- /test/svg2gcode/truss/offset/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/offset/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/truss/offset/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/offset/test.args -------------------------------------------------------------------------------- /test/svg2gcode/truss/offset/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/offset/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/truss/offset/test.svg: -------------------------------------------------------------------------------- 1 | ../truss.svg -------------------------------------------------------------------------------- /test/svg2gcode/truss/pocket/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/pocket/expected.ngc -------------------------------------------------------------------------------- /test/svg2gcode/truss/pocket/test.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/pocket/test.args -------------------------------------------------------------------------------- /test/svg2gcode/truss/pocket/test.s2g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/pocket/test.s2g -------------------------------------------------------------------------------- /test/svg2gcode/truss/pocket/test.svg: -------------------------------------------------------------------------------- 1 | ../truss.svg -------------------------------------------------------------------------------- /test/svg2gcode/truss/truss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/svg2gcode/truss/truss.svg -------------------------------------------------------------------------------- /test/unittest/test-gcoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/unittest/test-gcoder.py -------------------------------------------------------------------------------- /test/z_path2/expected.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/z_path2/expected.ngc -------------------------------------------------------------------------------- /test/z_path2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebKuzminsky/svg2gcode/HEAD/test/z_path2/test.py --------------------------------------------------------------------------------