dxfwrite 1.2.1 documentation¶
Welcome! This is the documentation for dxfwrite 1.2.1, last updated Dec 23, 2017.
A Python library to create DXF R12 drawings.
usage:
from dxfwrite import DXFEngine as dxf
drawing = dxf.drawing('test.dxf')
drawing.add_layer('LINES')
drawing.add(dxf.line((0, 0), (1, 0), color=7, layer='LINES'))
drawing.save()
First create a Drawing, then create various
drawing entities by DXFEngine
and add them to the
drawing with the Drawing.add()
method. Layers,
Textstyles, Linetypes, Views
and Viewports were also created by the DXFEngine
factory.
Contents
DXF R12 Entities
Composite Entities
Indices and tables¶
Document License¶
Unless otherwise stated, the content of this document is licensed under Creative Commons Attribution-ShareAlike 3.0 License