CadQuery / cadquery

A python parametric CAD scripting framework based on OCCT
https://cadquery.readthedocs.io
Other
2.98k stars 281 forks source link

Export doesnt create stl file #1148

Closed jcress closed 1 year ago

jcress commented 1 year ago

I used the example from the documentation to test writing stl files,

`import cadquery as cq
from cadquery import exporters

result = cq.Workplane().box(10, 10, 10)

exporters.export(result, '/path/to/file/mesh.stl')`

Obviously, I changed /path/to/file/ .. to something that makes sense where I have write permissions.

After running the code above, nothing appears in the output directory. No errors.

I am running debian.

jcress commented 1 year ago

user error caused my confusion.