Jeremy Wright

Results 377 comments of Jeremy Wright

@coosadog Here are some docs: https://cadquery.readthedocs.io/en/latest/apireference.html?highlight=export#file-management-and-export And here's an example from the test suite: https://github.com/CadQuery/cadquery/blob/master/tests/test_exporters.py#L45

@coosadog Also, here's an example involving STL export of a simple thing I created last week to fix a toy for someone. ```python import cadquery as cq from cadquery import...

You can set the file extension to whatever you want. Example [here](https://gitlab.com/jmwright/kicad-packages3D-generator/-/blob/master/Battery/main_generator.py#L173).

I tried a few experiments several months ago with running tessellation with multiple threads and got similar results. I didn't dig into why that is, but probably will at some...

@SDI8 Could you also post a link to some code that's using the serialization helpers so we can see how everything works together?

Doing that many voxels will probably always be slow with CadQuery, but there may be ways to improve the performance. Here is a [similar discussion](https://github.com/CadQuery/cadquery/issues/766) that might provide some ideas....

In my experience some of the settings do require an app restart.

How would the user be warned? On some apps the label of a setting will say "(Requires Restart)", and sometimes there's a popup dialog that tells the user that the...

It should be noted that this causes a segmentation fault in the Python repl on the command line too. It's not specific to CQ-editor. @revolter I'm not sure what the...