├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── COPYING ├── MANIFEST.in ├── README.rst ├── openscad_dxf.inx ├── openscad_dxf ├── __init__.py ├── dxf_color.py ├── inkinkex.py ├── inkutils.py ├── object2path.py └── openscad_dxf.py ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── files │ ├── circle.svg │ ├── circle0.48.dxf │ ├── circle0.91.dxf │ ├── combo.svg │ ├── combo0.48.dxf │ ├── combo0.91.dxf │ ├── loremipsum.svg │ ├── loremipsum0.48.dxf │ └── loremipsum0.91.dxf └── test_save.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include COPYING README.rst openscad_dxf.inx 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/README.rst -------------------------------------------------------------------------------- /openscad_dxf.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf.inx -------------------------------------------------------------------------------- /openscad_dxf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openscad_dxf/dxf_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf/dxf_color.py -------------------------------------------------------------------------------- /openscad_dxf/inkinkex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf/inkinkex.py -------------------------------------------------------------------------------- /openscad_dxf/inkutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf/inkutils.py -------------------------------------------------------------------------------- /openscad_dxf/object2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf/object2path.py -------------------------------------------------------------------------------- /openscad_dxf/openscad_dxf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/openscad_dxf/openscad_dxf.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/files/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/circle.svg -------------------------------------------------------------------------------- /tests/files/circle0.48.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/circle0.48.dxf -------------------------------------------------------------------------------- /tests/files/circle0.91.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/circle0.91.dxf -------------------------------------------------------------------------------- /tests/files/combo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/combo.svg -------------------------------------------------------------------------------- /tests/files/combo0.48.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/combo0.48.dxf -------------------------------------------------------------------------------- /tests/files/combo0.91.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/combo0.91.dxf -------------------------------------------------------------------------------- /tests/files/loremipsum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/loremipsum.svg -------------------------------------------------------------------------------- /tests/files/loremipsum0.48.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/loremipsum0.48.dxf -------------------------------------------------------------------------------- /tests/files/loremipsum0.91.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/files/loremipsum0.91.dxf -------------------------------------------------------------------------------- /tests/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tests/test_save.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brad/Inkscape-OpenSCAD-DXF-Export/HEAD/tox.ini --------------------------------------------------------------------------------