gumyr / build123d

A python CAD programming library
Apache License 2.0
521 stars 89 forks source link

DXF export issue with ellipses #281

Closed voneiden closed 1 year ago

voneiden commented 1 year ago

Ref https://github.com/CadQuery/cadquery/issues/1381 - Build123d exhibits same issue.

MRE:

import build123d as b3d
b3d_shape = b3d.import_brep("buggy.brep")
b3d_shape.export_dxf("buggy_b3d.dxf")

Probably tangentially relevant to #75

gumyr commented 1 year ago

There is a new much improved SVG and DXF exporter that exists but hasn't been documented yet which will entirely replace the current export_dxf method. If you'd like to try it let me know and I'll guide you through its use.

gumyr commented 1 year ago

There is now documentation at: https://build123d.readthedocs.io/en/latest/import_export.html#d-exporters

voneiden commented 1 year ago

Perfect, it works as expected with the new exporter, thank you very much. :+1: