Descripción
El borrador DXF es un módulo de software utilizado por el
Std Abrir,
Std Importar y
Std Exportar para manejar el formato de archivo DXF.
Dibujo Qcad exportado a DXF, que posteriormente se abre en FreeCAD
Importación
Two importers are available, which one is used can be specified under Edit → Preferences... → Import-Export → DXF. One is built-in, C++-based and fast, the other is legacy, coded in Python, slower, and requires the installation of an add-on, but can handle some entities better and can create more refined FreeCAD objects. Both support all DXF versions starting from R12.
Los objetos 3D dentro de un archivo DXF se almacenan bajo un blob binario ACIS/SAT, que por el momento no puede ser leído por FreeCAD. Sin embargo, entidades más sencillas como los 3DFACEs son soportados.
C++ importer
This importer can import the following DXF objects:
- lines
- polylines (and lwpolylines)
- arcs
- circles
- ellipses
- splines
- points
- texts and mtexts
- dimensions
- leaders
- blocks (only geometry, texts, dimensions and attributes inside blocks are skipped)
- layers
- paper space objects
Legacy importer
This importer can import the following DXF objects:
- lines
- polylines (and lwpolylines)
- arcs
- circles
- ellipses
- splines
- 3D faces
- texts and mtexts
- leaders
- layers
Exportación
Los archivos se exportan en el formato DXF R14, que puede ser manejado por muchas aplicaciones.
C++ exporter
Some of the features and limitations of this exporter are:
- All FreeCAD 2D geometry is exported, except Draft CubicBezCurves, Draft BezCurves and Draft Points.
- Straight edges from faces of 3D objects are exported, but curved edges only if they are on a plane parallel to the XY plane of the global coordinate system. Note that a DXF created from 3D objects will contain duplicate lines.
- Texts and dimensions are not exported.
- Colors are ignored.
- Layers are mapped from object names.
Legacy exporter
Some of the features and limitations of this exporter are:
- All FreeCAD 2D geometry is exported, except Draft Points. But ellipses, B-splines and Bézier curves are not exported properly.
- 3D objects are exported as flattened 2D views.
- Compound objects are exported as blocks.
- Texts and dimensions are exported.
- The colors in the DXF are based on the line color of objects. Black is mapped to "ByBlock", other colors are mapped using AutoCAD Color Index (ACI) colors.
- Layers are mapped from layer and group names. When groups are nested, the deepest group gives the layer name.
Instalación
Por razones de licencia, las librerías de importación/exportación DXF necesarias para la versión antigua del importador no forman parte del código fuente de FreeCAD.
Para más información ver: Importación FreeCAD y DXF.
Preferencias
DWG
Because the DWG format is a proprietary, closed and undocumented format it is hard for open-source projects like FreeCAD to support it. That is why FreeCAD relies on external converters to read and write DWG files. To import a DWG file a converter is used to create a DXF first, which can then be processed by the FreeCAD DXF importer. When exporting to DWG the opposite conversion happens: the DXF created by the FreeCAD DXF exporter is turned into a DWG.
Note that the DXF format allows a 1:1 conversion of the DWG format. All applications that can read and write DWG files can do the same with DXF files, with no data loss. So asking for DXF files instead of DWG files, and supplying DXF files in turn, should not cause any problems.
There is built-in support for the following DWG converters:
See Import Export Preferences and FreeCAD and DWG Import for more information.
Scripting
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
To export objects to DXF use the export
method of the importDXF module.
importDXF.export(objectslist, filename, nospline=False, lwPoly=False)
- For the Windows OS: use a / (forward slash) as the path separator in
filename
.
Ejemplo:
import FreeCAD as App
import Draft
import importDXF
doc = App.newDocument()
polygon1 = Draft.make_polygon(3, radius=500)
polygon2 = Draft.make_polygon(5, radius=1500)
doc.recompute()
objects = [polygon1, polygon2]
importDXF.export(objects, "/home/user/Pictures/myfile.dxf")
Draft
- Drafting: Line, Polyline, Fillet, Arc, Arc by 3 points, Circle, Ellipse, Rectangle, Polygon, B-spline, Cubic Bézier curve, Bézier curve, Point, Facebinder, ShapeString, Hatch
- Annotation: Text, Dimension, Label, Annotation styles, Annotation scale
- Modification: Move, Rotate, Scale, Mirror, Offset, Trimex, Stretch, Clone, Array, Polar array, Circular array, Path array, Path link array, Point array, Point link array, Edit, Subelement highlight, Join, Split, Upgrade, Downgrade, Wire to B-spline, Draft to sketch, Set slope, Flip dimension, Shape 2D view
- Draft Tray: Select plane, Set style, Toggle construction mode, AutoGroup
- Snapping: Snap lock, Snap endpoint, Snap midpoint, Snap center, Snap angle, Snap intersection, Snap perpendicular, Snap extension, Snap parallel, Snap special, Snap near, Snap ortho, Snap grid, Snap working plane, Snap dimensions, Toggle grid
- Miscellaneous: Apply current style, Layer, Manage layers, Add a new named group, Move to group, Select group, Add to construction group, Toggle normal/wireframe display, Create working plane proxy, Heal, Show snap toolbar
- Additional: Constraining, Pattern, Preferences, Import Export Preferences, DXF/DWG, SVG, OCA, DAT
- Context menu:
User documentation
- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties, Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base, Assembly, BIM, CAM, Draft, FEM, Inspection, Material, Mesh, OpenSCAD, Part, PartDesign, Points, Reverse Engineering, Robot, Sketcher, Spreadsheet, Surface, TechDraw, Test Framework