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

# The problem: Hi, I am attempting to produce a cylinder with one or more helical through-holes. Please consult the following MWE: ``` import cadquery as cq from cadquery import...

OCC kernel issue

The following code does not work ```python import cadquery as cq result = cq.Workplane("XY").rect(10.0,10.0).extrude(10).faces("

enhancement

I checked out the branch and ran a few manual tests. I did not find any problem with arc length cost. There may be an issue related to bounds. ```...

sketching

Below simple code: ```py import cadquery as cq a = cq.Workplane().box(5, 5, 5).faces(">Z").fillet(0.5)\ .faces("

OCC kernel issue

Example of "bad" or problematic starting point: ``` .segment((0, 0), (1.0, 0), "seg1") .segment((0, 0), (-1.0, 0.0), "seg2") .constrain("seg1", "seg2", "Angle", 30) ``` Another example with segment-arc when tangents are...

sketching

## To Reproduce Basic install following the documentation. ``` conda create --name cadquery conda activate cadquery conda install -c conda-forge -c cadquery cadquery=2 python import cadquery ``` ```python ``` ##...

bug

I find ArcAngle results are in the reversed sense. For example, the results of the following Sketch with or without solve is expected to be the same. ``` s =...

sketching

Perhaps quite low down on the list of nice features but it would be great if the BREP support allowed an optional removal of duplicate surfaces and use of virtual...

OCC feature
svg

Hello, Is there a way to perform a 2D sweep along a path in CQ ? The resulting geometry should be a shell with zero thickness. Attached is a sample...

question

Support text placement on a 3D surface: ![afbeelding](https://user-images.githubusercontent.com/13981538/53258672-89d2cd00-36cd-11e9-9931-e80bfcf4a447.png) Continuation of #48

OCC feature
text rendering