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

Asymmetric chamfer is not applied consistently. The chamfers on the top of this ring look correct; however, the inner chamfer on the bottom is reversed. ![chamferBug](https://user-images.githubusercontent.com/85638518/121398769-b4d79e00-c923-11eb-8f77-530432d88bf7.png) Error found on cadquery...

Currently this kind of workaround is required: ```python s = cq.Sketch() ... exporters.exportDXF(cq.Workplane().add(s._faces), 'out.dxf') ```

dxf
sketching

## To Reproduce ```python import cadquery pass ``` Doing this causes the system to finish with exit code (0xC0000005) or exit code (0xc0000374). Version 2.3.1 and 2.4.0 respectively. ## Environment...

bug
pip

The code below allows me to stack 2 assemblies but I don't know how to center them, so that they have the same center in the XY plane. ``` rows...

question

How to solve the error in the picture? The specific content of the reference function is as follows: def bcc_heterogeneous_lattice(unit_cell_size, min_strut_diameter, max_strut_diameter, min_node_diameter, max_node_diameter, Nx, Ny, Nz, topology='bcc', rule='linear', position=(0,...

no_MRE

I am trying to generate a torus-like solid from points using 2d splines, and I am having the following issue when moving from a shell to a solid. ``` cad_solid...

bug

code: ```python import cadquery as cq from lq.topologies.schwartz import schwartz_p_heterogeneous_lattice cq.Workplane.schwartz_p_heterogeneous_lattice = schwartz_p_heterogeneous_lattice # BEGIN USER INPUT unit_cell_size = 4 Nx = 10 Ny = 10 Nz = 10 min_thickness...

no_MRE

Dear CQ community, Using ``` cadquery @ git+https://github.com/CadQuery/cadquery.git@153ed3f667911e909ba8b93bddd297defc7cd42f cadquery-ocp==7.7.2 gmsh==4.12.2 ``` the following simple code adapted from #1346 ```python import cadquery as cq import gmsh FD_new = cq.Workplane("YZ").center(-2.5, -10).rect(5, 20).extrude(100)...

pip

## To Reproduce I'm trying to build some gridfinity stuff, therefore I'm trying to to build the baseplate in CadQuery. However I'm getting some weird `Fillets requires that edges be...

OCC kernel issue

## To Reproduce The error is here on the 2.4.0 release and on 4f2cec0f5ee21041a1f8c80f161334f349180933 with the OCP 7.7.2.0 release, but this error has been here a while for me I...

bug