├── .github └── workflows │ └── testrunner.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── NEWS.txt ├── README.rst ├── doc ├── DXF12.txt ├── Drawing.rst ├── Makefile ├── _templates │ └── layout.html ├── conf.py ├── dxfengine.rst ├── dxftypes.rst ├── entities │ ├── angular_dim.rst │ ├── arc.rst │ ├── arc_dim.rst │ ├── arcdim.png │ ├── attdef.rst │ ├── attrib.rst │ ├── bezier.png │ ├── bezier.rst │ ├── block.rst │ ├── circle.rst │ ├── clothoid.png │ ├── clothoid.rst │ ├── ellipse.png │ ├── ellipse.rst │ ├── ellipse1.png │ ├── ellipse2.png │ ├── ellipse3.png │ ├── face3d.rst │ ├── faces.png │ ├── flags.png │ ├── insert.rst │ ├── insert2.rst │ ├── layer.rst │ ├── lindim.png │ ├── line.rst │ ├── linear_dim.rst │ ├── linepattern.rst │ ├── mesh.png │ ├── mtext.rst │ ├── mtext1.png │ ├── mtext2.png │ ├── point.rst │ ├── polyface.rst │ ├── polyline.rst │ ├── polymesh.rst │ ├── radial_dim.rst │ ├── rect.png │ ├── rect.rst │ ├── shape.rst │ ├── solid.rst │ ├── spline.png │ ├── spline.rst │ ├── table.png │ ├── table.rst │ ├── text.rst │ ├── textstyle.rst │ ├── trace.rst │ ├── view.rst │ ├── viewport.PNG │ ├── viewport.rst │ └── vport.rst ├── headervars.rst ├── howto │ ├── blocks.rst │ ├── document.rst │ ├── paperspace.rst │ └── shapes.rst ├── index.rst └── make.bat ├── dxfwrite ├── __init__.py ├── acadctb.py ├── algebra │ ├── __init__.py │ ├── base.py │ ├── bezier.py │ ├── circle.py │ ├── clothoid.py │ ├── cspline.py │ └── ray.py ├── allplancfg.py ├── base.py ├── const.py ├── curves.py ├── dimlines.py ├── drawing.py ├── engine.py ├── entities.py ├── hdrvars.py ├── helpers.py ├── htmlcolors.py ├── insert2.py ├── mixins.py ├── mtext.py ├── pylintrc ├── rect.py ├── sections.py ├── std.py ├── table.py ├── tableentries.py ├── tables.py ├── ucs.py ├── util.py ├── vector2d.py └── vector3d.py ├── examples ├── bezier.py ├── clothoid.py ├── colortable.py ├── dimlines.py ├── ellipse.py ├── empty_drawing.py ├── flags.py ├── mtext.py ├── paperspace.py ├── polyface.py ├── polyline.py ├── polymesh.py ├── profile_dxfstr.py ├── rectangle.py ├── runall.bat ├── runall.sh ├── runall3.bat ├── simple_drawing.py ├── spline.py ├── table.py ├── unicode_text.py ├── viewports_in_paperspace.py └── xref.py ├── pytest.ini ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── ctbtest.ctb ├── test_abstract_entity.py ├── test_acadctb.py ├── test_algebra_base.py ├── test_algebra_circle.py ├── test_arc.py ├── test_attdef.py ├── test_attrib.py ├── test_base.py ├── test_bezier.py ├── test_block.py ├── test_circle.py ├── test_clothoid.py ├── test_cspline.py ├── test_dim_angle.py ├── test_dim_arc.py ├── test_dim_linear.py ├── test_dim_radius.py ├── test_dim_style.py ├── test_dim_styles.py ├── test_drawing.py ├── test_ellipse.py ├── test_engine.py ├── test_face3d.py ├── test_insert.py ├── test_insert2.py ├── test_layer.py ├── test_line.py ├── test_linetype.py ├── test_mixins.py ├── test_mtext.py ├── test_point.py ├── test_polyface.py ├── test_polyline.py ├── test_polymesh.py ├── test_ray2d.py ├── test_rectangle.py ├── test_section_blocks.py ├── test_sections.py ├── test_solid.py ├── test_std.py ├── test_style.py ├── test_table.py ├── test_tables.py ├── test_tags2str.py ├── test_text.py ├── test_ucs.py ├── test_unicode.py ├── test_util.py ├── test_vertex.py ├── test_view.py ├── test_viewport.py └── test_viewport_entity.py /.github/workflows/testrunner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/.github/workflows/testrunner.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/NEWS.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/README.rst -------------------------------------------------------------------------------- /doc/DXF12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/DXF12.txt -------------------------------------------------------------------------------- /doc/Drawing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/Drawing.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/dxfengine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/dxfengine.rst -------------------------------------------------------------------------------- /doc/dxftypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/dxftypes.rst -------------------------------------------------------------------------------- /doc/entities/angular_dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/angular_dim.rst -------------------------------------------------------------------------------- /doc/entities/arc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/arc.rst -------------------------------------------------------------------------------- /doc/entities/arc_dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/arc_dim.rst -------------------------------------------------------------------------------- /doc/entities/arcdim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/arcdim.png -------------------------------------------------------------------------------- /doc/entities/attdef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/attdef.rst -------------------------------------------------------------------------------- /doc/entities/attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/attrib.rst -------------------------------------------------------------------------------- /doc/entities/bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/bezier.png -------------------------------------------------------------------------------- /doc/entities/bezier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/bezier.rst -------------------------------------------------------------------------------- /doc/entities/block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/block.rst -------------------------------------------------------------------------------- /doc/entities/circle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/circle.rst -------------------------------------------------------------------------------- /doc/entities/clothoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/clothoid.png -------------------------------------------------------------------------------- /doc/entities/clothoid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/clothoid.rst -------------------------------------------------------------------------------- /doc/entities/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/ellipse.png -------------------------------------------------------------------------------- /doc/entities/ellipse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/ellipse.rst -------------------------------------------------------------------------------- /doc/entities/ellipse1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/ellipse1.png -------------------------------------------------------------------------------- /doc/entities/ellipse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/ellipse2.png -------------------------------------------------------------------------------- /doc/entities/ellipse3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/ellipse3.png -------------------------------------------------------------------------------- /doc/entities/face3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/face3d.rst -------------------------------------------------------------------------------- /doc/entities/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/faces.png -------------------------------------------------------------------------------- /doc/entities/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/flags.png -------------------------------------------------------------------------------- /doc/entities/insert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/insert.rst -------------------------------------------------------------------------------- /doc/entities/insert2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/insert2.rst -------------------------------------------------------------------------------- /doc/entities/layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/layer.rst -------------------------------------------------------------------------------- /doc/entities/lindim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/lindim.png -------------------------------------------------------------------------------- /doc/entities/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/line.rst -------------------------------------------------------------------------------- /doc/entities/linear_dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/linear_dim.rst -------------------------------------------------------------------------------- /doc/entities/linepattern.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/linepattern.rst -------------------------------------------------------------------------------- /doc/entities/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/mesh.png -------------------------------------------------------------------------------- /doc/entities/mtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/mtext.rst -------------------------------------------------------------------------------- /doc/entities/mtext1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/mtext1.png -------------------------------------------------------------------------------- /doc/entities/mtext2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/mtext2.png -------------------------------------------------------------------------------- /doc/entities/point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/point.rst -------------------------------------------------------------------------------- /doc/entities/polyface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/polyface.rst -------------------------------------------------------------------------------- /doc/entities/polyline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/polyline.rst -------------------------------------------------------------------------------- /doc/entities/polymesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/polymesh.rst -------------------------------------------------------------------------------- /doc/entities/radial_dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/radial_dim.rst -------------------------------------------------------------------------------- /doc/entities/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/rect.png -------------------------------------------------------------------------------- /doc/entities/rect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/rect.rst -------------------------------------------------------------------------------- /doc/entities/shape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/shape.rst -------------------------------------------------------------------------------- /doc/entities/solid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/solid.rst -------------------------------------------------------------------------------- /doc/entities/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/spline.png -------------------------------------------------------------------------------- /doc/entities/spline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/spline.rst -------------------------------------------------------------------------------- /doc/entities/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/table.png -------------------------------------------------------------------------------- /doc/entities/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/table.rst -------------------------------------------------------------------------------- /doc/entities/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/text.rst -------------------------------------------------------------------------------- /doc/entities/textstyle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/textstyle.rst -------------------------------------------------------------------------------- /doc/entities/trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/trace.rst -------------------------------------------------------------------------------- /doc/entities/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/view.rst -------------------------------------------------------------------------------- /doc/entities/viewport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/viewport.PNG -------------------------------------------------------------------------------- /doc/entities/viewport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/viewport.rst -------------------------------------------------------------------------------- /doc/entities/vport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/entities/vport.rst -------------------------------------------------------------------------------- /doc/headervars.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/headervars.rst -------------------------------------------------------------------------------- /doc/howto/blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/howto/blocks.rst -------------------------------------------------------------------------------- /doc/howto/document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/howto/document.rst -------------------------------------------------------------------------------- /doc/howto/paperspace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/howto/paperspace.rst -------------------------------------------------------------------------------- /doc/howto/shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/howto/shapes.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/doc/make.bat -------------------------------------------------------------------------------- /dxfwrite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/__init__.py -------------------------------------------------------------------------------- /dxfwrite/acadctb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/acadctb.py -------------------------------------------------------------------------------- /dxfwrite/algebra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/__init__.py -------------------------------------------------------------------------------- /dxfwrite/algebra/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/base.py -------------------------------------------------------------------------------- /dxfwrite/algebra/bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/bezier.py -------------------------------------------------------------------------------- /dxfwrite/algebra/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/circle.py -------------------------------------------------------------------------------- /dxfwrite/algebra/clothoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/clothoid.py -------------------------------------------------------------------------------- /dxfwrite/algebra/cspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/cspline.py -------------------------------------------------------------------------------- /dxfwrite/algebra/ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/algebra/ray.py -------------------------------------------------------------------------------- /dxfwrite/allplancfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/allplancfg.py -------------------------------------------------------------------------------- /dxfwrite/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/base.py -------------------------------------------------------------------------------- /dxfwrite/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/const.py -------------------------------------------------------------------------------- /dxfwrite/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/curves.py -------------------------------------------------------------------------------- /dxfwrite/dimlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/dimlines.py -------------------------------------------------------------------------------- /dxfwrite/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/drawing.py -------------------------------------------------------------------------------- /dxfwrite/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/engine.py -------------------------------------------------------------------------------- /dxfwrite/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/entities.py -------------------------------------------------------------------------------- /dxfwrite/hdrvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/hdrvars.py -------------------------------------------------------------------------------- /dxfwrite/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/helpers.py -------------------------------------------------------------------------------- /dxfwrite/htmlcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/htmlcolors.py -------------------------------------------------------------------------------- /dxfwrite/insert2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/insert2.py -------------------------------------------------------------------------------- /dxfwrite/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/mixins.py -------------------------------------------------------------------------------- /dxfwrite/mtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/mtext.py -------------------------------------------------------------------------------- /dxfwrite/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/pylintrc -------------------------------------------------------------------------------- /dxfwrite/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/rect.py -------------------------------------------------------------------------------- /dxfwrite/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/sections.py -------------------------------------------------------------------------------- /dxfwrite/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/std.py -------------------------------------------------------------------------------- /dxfwrite/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/table.py -------------------------------------------------------------------------------- /dxfwrite/tableentries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/tableentries.py -------------------------------------------------------------------------------- /dxfwrite/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/tables.py -------------------------------------------------------------------------------- /dxfwrite/ucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/ucs.py -------------------------------------------------------------------------------- /dxfwrite/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/util.py -------------------------------------------------------------------------------- /dxfwrite/vector2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/vector2d.py -------------------------------------------------------------------------------- /dxfwrite/vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/dxfwrite/vector3d.py -------------------------------------------------------------------------------- /examples/bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/bezier.py -------------------------------------------------------------------------------- /examples/clothoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/clothoid.py -------------------------------------------------------------------------------- /examples/colortable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/colortable.py -------------------------------------------------------------------------------- /examples/dimlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/dimlines.py -------------------------------------------------------------------------------- /examples/ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/ellipse.py -------------------------------------------------------------------------------- /examples/empty_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/empty_drawing.py -------------------------------------------------------------------------------- /examples/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/flags.py -------------------------------------------------------------------------------- /examples/mtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/mtext.py -------------------------------------------------------------------------------- /examples/paperspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/paperspace.py -------------------------------------------------------------------------------- /examples/polyface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/polyface.py -------------------------------------------------------------------------------- /examples/polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/polyline.py -------------------------------------------------------------------------------- /examples/polymesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/polymesh.py -------------------------------------------------------------------------------- /examples/profile_dxfstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/profile_dxfstr.py -------------------------------------------------------------------------------- /examples/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/rectangle.py -------------------------------------------------------------------------------- /examples/runall.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | for %%e in (*.py) do python %%e 3 | -------------------------------------------------------------------------------- /examples/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/runall.sh -------------------------------------------------------------------------------- /examples/runall3.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | for %%e in (*.py) do python3 %%e 3 | -------------------------------------------------------------------------------- /examples/simple_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/simple_drawing.py -------------------------------------------------------------------------------- /examples/spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/spline.py -------------------------------------------------------------------------------- /examples/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/table.py -------------------------------------------------------------------------------- /examples/unicode_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/unicode_text.py -------------------------------------------------------------------------------- /examples/viewports_in_paperspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/viewports_in_paperspace.py -------------------------------------------------------------------------------- /examples/xref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/examples/xref.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ctbtest.ctb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/ctbtest.ctb -------------------------------------------------------------------------------- /tests/test_abstract_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_abstract_entity.py -------------------------------------------------------------------------------- /tests/test_acadctb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_acadctb.py -------------------------------------------------------------------------------- /tests/test_algebra_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_algebra_base.py -------------------------------------------------------------------------------- /tests/test_algebra_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_algebra_circle.py -------------------------------------------------------------------------------- /tests/test_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_arc.py -------------------------------------------------------------------------------- /tests/test_attdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_attdef.py -------------------------------------------------------------------------------- /tests/test_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_attrib.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_bezier.py -------------------------------------------------------------------------------- /tests/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_block.py -------------------------------------------------------------------------------- /tests/test_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_circle.py -------------------------------------------------------------------------------- /tests/test_clothoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_clothoid.py -------------------------------------------------------------------------------- /tests/test_cspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_cspline.py -------------------------------------------------------------------------------- /tests/test_dim_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_angle.py -------------------------------------------------------------------------------- /tests/test_dim_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_arc.py -------------------------------------------------------------------------------- /tests/test_dim_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_linear.py -------------------------------------------------------------------------------- /tests/test_dim_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_radius.py -------------------------------------------------------------------------------- /tests/test_dim_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_style.py -------------------------------------------------------------------------------- /tests/test_dim_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_dim_styles.py -------------------------------------------------------------------------------- /tests/test_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_drawing.py -------------------------------------------------------------------------------- /tests/test_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_ellipse.py -------------------------------------------------------------------------------- /tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_engine.py -------------------------------------------------------------------------------- /tests/test_face3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_face3d.py -------------------------------------------------------------------------------- /tests/test_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_insert.py -------------------------------------------------------------------------------- /tests/test_insert2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_insert2.py -------------------------------------------------------------------------------- /tests/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_layer.py -------------------------------------------------------------------------------- /tests/test_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_line.py -------------------------------------------------------------------------------- /tests/test_linetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_linetype.py -------------------------------------------------------------------------------- /tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_mixins.py -------------------------------------------------------------------------------- /tests/test_mtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_mtext.py -------------------------------------------------------------------------------- /tests/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_point.py -------------------------------------------------------------------------------- /tests/test_polyface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_polyface.py -------------------------------------------------------------------------------- /tests/test_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_polyline.py -------------------------------------------------------------------------------- /tests/test_polymesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_polymesh.py -------------------------------------------------------------------------------- /tests/test_ray2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_ray2d.py -------------------------------------------------------------------------------- /tests/test_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_rectangle.py -------------------------------------------------------------------------------- /tests/test_section_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_section_blocks.py -------------------------------------------------------------------------------- /tests/test_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_sections.py -------------------------------------------------------------------------------- /tests/test_solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_solid.py -------------------------------------------------------------------------------- /tests/test_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_std.py -------------------------------------------------------------------------------- /tests/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_style.py -------------------------------------------------------------------------------- /tests/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_table.py -------------------------------------------------------------------------------- /tests/test_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_tables.py -------------------------------------------------------------------------------- /tests/test_tags2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_tags2str.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_ucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_ucs.py -------------------------------------------------------------------------------- /tests/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_unicode.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_vertex.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_view.py -------------------------------------------------------------------------------- /tests/test_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_viewport.py -------------------------------------------------------------------------------- /tests/test_viewport_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozman/dxfwrite/HEAD/tests/test_viewport_entity.py --------------------------------------------------------------------------------