I created a spline to be exported to the DXf extension:
pts = {{0, 0}, {1, 1}, {2, -1}, {5, 1}};
g = Graphics[{BezierCurve[pts]}]
Export["C:\\Users\\Leandro\\Desktop\\Arquivo.dxf", g]
I have applications to open the generated file, but my system informs me that it cannot be opened by these applications because it contains a flaw. Is there a parameter that needs to be inserted in my code?
pts = Append[0] /@ {{0, 0}, {1, 1}, {2, -1}, {5, 1}}; g = Graphics3D[{BezierCurve[pts]}]; Export["model.dxf", g];– Greg Hurst Apr 03 '20 at 22:58