Bruno Agostini
Bruno Agostini
@fedorkotov absolutely, I have never written a plugin but I will look at it. I think `fragment` probably does not deserve a PR (I have not found a compelling use...
@fedorkotov done in https://github.com/CadQuery/cadquery-plugins/pull/27#issue-1137766265
Same issue here, ```python from scholarly import ProxyGenerator # Set up a ProxyGenerator object to use free proxies # This needs to be done only once per session pg =...
@jmwright Yes it was a `pip`install. Reverting to `cadquery-ocp==7.7.1` does not solve the issue. Export in a STEP file and importing via `gmsh.merge` function works. I will try with a...
@jmwright with a fresh conda install `conda create -n cadquery -c conda-forge -c cadquery cadquery=master cq-editor=master` and `gmsh==4.12.2` (same as pip install) the issue disappears. So the problem comes from...
@adam-urbanczyk thank you! Anything that can be done beyond using conda? Like raising the issue with the `gmsh` team?
Personally I use `BoxSelector`, like this ```python faces = cq_object.faces(cq.selectors.BoxSelector(corner0, corner1, boundingbox=True)) ``` to select objects having the same, or contained in, bounding boxes.
Maybe comparing areas and centers with ```python center = face.val().Center().toTuple() area = face.val().Area() ```
You could get a list of all surfaces with `faces = cq_object.faces().vals()` and then remove from this list the selected ones. That would leave you with a list of not...