Jeremy Wright

Results 375 comments of Jeremy Wright

> Are you saying that it removes more than 3 faces (the number I thought) because of the fillet? The shell operation in CadQuery will remove the selected face and...

There is some code in [this issue](https://github.com/CadQuery/cadquery/issues/209) that might help you.

Those references should be to OCP now since we've moved away from PythonOCC. ```python import cadquery as cq from OCP.gp import gp_Mat, gp_Trsf, gp_GTrsf # from OCP.Precision import precision_Angular, precision_Confusion...

Are you sure that the error says `warped`? It should say `wrapped`. I think you want `imported_STEP.wrapped` to become `imported_STEP.val().wrapped`

For the OCP layer, I rely on the OpenCASCADE documentation. https://dev.opencascade.org/doc/overview/html/

You could try setting the `PYTHONPATH` environment variable to point to the module you want to load.

I first checked with sections to see if the holes are correct in CQ-editor, and they stay consistent at 0.2, 0.25, 0.5, 0.75 heights. ```python section = result.section(height=0.5) show_object(section) ```...

@dimonbavly Every call of `show_object` causes the CadQuery Gateway Interface (CQGI) to add a copy of the object to a list of objects to be rendered. The assumption was that...

@prst What version of FreeCAD and the CadQuery FreeCAD module are you using? I can import the serial module fine on my system. Also, unless you have a compelling reason...

@roipoussiere Is this based on the work mentioned [here](https://github.com/bernhard-42/jupyter-cadquery/issues/40)? Is it based on jupyter-cadquery, or was it built from scratch? If this is added to the readme, I'm thinking right...