Questions tagged [dxf]

DXF (Design eXchange File) is a file format for CAD data that was created by AutoDesk to facilitate compatibility and exchange between AutoCAD and various other CAD programs.

Parsing DXF files using only plain JavaScript

Currently, I am immersed in a CNC project and aiming to convert DXF files into objects using JS. Initially, I attempted using SVGs but the results were not as expected - instead of shapes, the drawings exported as lines (e.g., a square appearing as four se ...