cadquery icon indicating copy to clipboard operation
cadquery copied to clipboard

A python parametric CAD scripting framework based on OCCT

Results 349 cadquery issues
Sort by recently updated
recently updated
newest added

First off I like the live previews in the docs, and I'm not suggesting that we pull them back out. However, Firefox complains about the examples page now. I have...

docs

I am running cadquery in a LatticeQuery environment which defines the function `eachpointAdaptive` similar to [https://github.com/CadQuery/cadquery/issues/628#issuecomment-807493984](https://github.com/CadQuery/cadquery/issues/628#issuecomment-807493984). The script runs quite fast since `shapes.py` sets `SetRunParallel` `true`, and it recruits all...

question
OCCT

Fixes #1591. - This PR fixes the following bug when a cylinder generated from a workplane with a direction different than the default one `(0, 0, 1)` was not centered...

Using `partX/subpartY@...` is not mentioned anywhere in the docs: ```python assy2 = ( cq.Assembly() .add(subassembly, name="partX", color=cq.Color("orange")) .add(part2, name="part2", color=cq.Color("red")) #NB: partX/subpartX1 .constrain("partX/subpartX1@faces@>X", "part2?right", "Plane") ) assy2.solve() ```

docs
assembly

Say I'm working with the free func API to create a sweep. I'd like to create the wire to sweep with Sketch on a given plane (here using Workplane). There...

enhancement
free func

In focusing on the color fix of PR #1157, I may have overlooked the importance of this comment as no tests had failed: https://github.com/CadQuery/cadquery/issues/1170#issuecomment-1268792075 There is a bug (regression) when...

bug
assembly

Hello, I think I am having a bug when I create a cylinder from a workplane. ```python >>> cq.Shape.centerOfMass(cq.Workplane("XY").cylinder(radius=1, height=10, direct=cq.Vector(1, 0, 0)).val()) Vector: (5.0, 6.263935600236486e-18, -5.0) >>> cq.Shape.centerOfMass(cq.Workplane("XY").cylinder(radius=1, height=10,...

bug

I want to populate holes in a complex 2d shape onto a complex 3d shape I thought about 2 approaches each comes with a back draw 1- Project the 2d...

question

I recently got into creating animations with CadQuery and jupyter_cadquery and wanted to animate more complex constrained assemblies (planar linkages). My approach currently is just changing the `param` of a...

question
assembly

![image](https://github.com/user-attachments/assets/1300c7f7-09aa-4198-9bcf-576a76033cc1) Hi all, with just a basic installation of cadquery, im getting this issue: raise AttributeError("module {!r} has no attribute " AttributeError: module 'numpy' has no attribute 'bool8'. Did you...