Convert STL to DXF (2D Projection for CAD Drafting)

Convert STL 3D models to 2D DXF projection for use in AutoCAD drafting. Understand what this produces, what is lost, and when it is appropriate.

✔ What it does
Projects the surface geometry of an STL 3D model into a 2D DXF file, producing a flat outline suitable for CAD drafting reference.
✘ What it does not do
Does NOT produce a full 3D DXF or retain depth information. This is a 2D projection — the model is flattened onto a plane.
📂
Drop your STL file here
or click to browse — max 50MB

Converting your file…

Conversion failed.

How STL → DXF conversion works

STL files store 3D geometry as a list of triangulated facets (triangles with surface normals). This tool loads the STL mesh and projects all visible geometry onto the XY plane (top-down view by default). Visible edges and silhouettes from the projection direction are extracted and written as 2D LINE and POLYLINE entities in DXF format. The output is a flat 2D representation of the model as seen from above — it is not a 3D model in any form. Hidden lines (geometry behind the projection plane) are not included without manual adjustment. The DXF file is suitable for use as a drafting reference layer in AutoCAD, as a footprint outline in architectural drawings, or as a cutting guide for CNC machines that work in 2D.

Limitations

  • 3D depth is permanently lost — this is a 2D output only. There is no way to recover the 3D model from the DXF.
  • Hidden lines behind the projection plane are not visible without manual adjustment.
  • Complex curved surfaces project as polygon approximations (STL uses triangulation).
  • Very dense STL meshes produce complex, hard-to-edit DXF line work.

When to use this conversion

  • Creating 2D drafting reference from a 3D printed part model for documentation.
  • Extracting a footprint outline from a 3D model for integration into an architectural floor plan.
  • Generating a 2D template from 3D geometry for laser cutting or CNC routing guides.

Alternatives to consider

  • AutoCAD or Fusion 360 for proper 2D drawings with hidden-line removal and annotation.
  • FreeCAD's Drawing Workbench for engineering-accurate 2D projections from 3D geometry.

Frequently asked questions

Can I convert the 2D DXF back to 3D?

No. The 2D projection permanently discards all depth information. Reconstruction would require manual 3D modelling from scratch.

Which projection plane is used?

XY plane (top view) by default. Pro tier allows XZ and YZ axis selection.

Will curved surfaces look smooth?

STL approximates curves with triangles. The projection reflects this triangulation, so curved surfaces will appear faceted.