cadquery
cadquery copied to clipboard
A python parametric CAD scripting framework based on OCCT
STL export of object with twistExtrude through-hole produces spatially-varying geometric inaccuracy
# 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...
The following code does not work ```python import cadquery as cq result = cq.Workplane("XY").rect(10.0,10.0).extrude(10).faces("
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. ```...
Below simple code: ```py import cadquery as cq a = cq.Workplane().box(5, 5, 5).faces(">Z").fillet(0.5)\ .faces("
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...
## 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 ``` ##...
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 =...
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...
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...
Support text placement on a 3D surface:  Continuation of #48