cadquery
cadquery copied to clipboard
A python parametric CAD scripting framework based on OCCT
Is there a way to install the current cadquery python library (the current *master*) on on an ARM based mac (currently M1)? It is possible to install both the CQ-editor...
1) Similar as in CQ SVG export, the wire is created from projected edges using cq.Wire.combine. The result has 7 edges. 2) The wire edge order is shown in screenshot,...
I had some issues with PerpendicularDirSelector and from a bit of digging found it is currently limited to faces of type `PLANE` only. I was trying to select gear teeth...
Now that pythonocc is packaged via conda-forge [1] I wanted to ask if it is likely to see cadquery packaged for conda-forge too. - As far as I know, previously...
When mirroring a wire, we fail to reset the first point. As a consequence, the next sketch we draw will have an incorrect starting point causing problems when closing. This...
- [ ] It fails silently - better add a warning - [ ] inner knots with multiplicities higher than one are not supported DXF to reproduce the issue [Lamp.dxf.zip](https://github.com/CadQuery/cadquery/files/8139160/Lamp.dxf.zip)
The following code causes the solid body to disappear and it leaves some surfaces only: ```python import cadquery as cq result = ( cq.Workplane('YZ') .cylinder(75, 40) .faces('>X') .workplane() .transformed(rotate=(-45,0,0)) .split(keepBottom=True)...
**Context** : I am trying to build a 2D shape, and sweep an arbitrary profile along its edges. Not only I fail miserably at this but I even manage to...
I'm not sure an issue is the best place for these notes, if not, I'll close this and move them somewhere else. These notes are a summary of the issues...
Keep selected objects after workplane creation, it breaks quite a lof of tests, we need to investigate if the failing test can be rewritten or if it's really a breaking...