cadquery
cadquery copied to clipboard
A python parametric CAD scripting framework based on OCCT
I'm using CQ-editor Version: 0.3.0dev on Ubuntu 20.04.3. This model crashes with `StdFail_NotDone` exception: ``` a = ( cq.Workplane("XY") .box(8, 8, 8) .faces("
Hello, There is one argument listed in the doc for makeTorus which doesn't exist in the code actually. It's listed as "angle" (see after "angle2" in the text circled in...
Currently the CadQuery export STL feature makes use of OCP.StlAPI_Writer This writes an ASCII STL file but it would be helpful (to preserve high precision) to be able to write...
Can sketches be exported to SVGs? I'm running this program: ``` import cadquery as cq result = cq.Workplane("front").sketch().circle(1).parent result.exportSvg('test.svg') ``` This is the error I get: ```Traceback (most recent call...
Any idea why offset2D gives different results for these two test blocks? ``` import cadquery as cq test1 = (cq.Workplane() .box(25,25,1) .faces(">Z").workplane() .moveTo(7.825,-3.155) .circle(3.15/2).cutThruAll() .moveTo(-7.825,-3.155) .circle(3.15/2).cutThruAll() .moveTo(-7.825,3.155) .circle(3.15/2).cutThruAll() .moveTo(7.825,3.155) .circle(3.15/2).cutThruAll()...
This pyproject.toml* is used to build the new [cadquery2](https://pypi.org/project/cadquery2/) package, using the [`ocp-vtk`](https://pypi.org/project/ocp-vtk/) python package (which is based on #1048), which solves #153. I used [poetry](https://python-poetry.org/) to build the wheel...
Sketches are awesome. Importing DXFs is awesome. `_importDXF` and its spawn seem kinda hard to use in practice. Generally, I know the names of the layers I want from a...
I'll open this issue just to track 7.6.0 readiness, I understand it's in the works, but just not merged yet. Yesterday I build built OCP ([34e223c](https://github.com/CadQuery/OCP/commit/34e223c89c2eae0dbf9695a0f76eb3fc28f6f939)) with OCCT 7.6.0 and...
I'd like to import a STEP onto a transformed/rotated workplane, instead of importing it and redoing previous transformations. Is this possible?
The paramak project recently ran into an issue when moving from v2 to the master version of CQ. When rotating shapes 180° and do a union, an error is raised....