cadquery
                                
                                 cadquery copied to clipboard
                                
                                    cadquery copied to clipboard
                            
                            
                            
                        A python parametric CAD scripting framework based on OCCT
Hey there, would really like some help with this one, a fix or workaround would be appreciated. When I sweep a tube along a certain polyline path, it shows fine...
https://cadquery.readthedocs.io could have a "Get Help" chapter like the Readme.md has.
## To Reproduce I am trying to make a box with tapered walls using the following code, however I get an error `OCP.Standard.Standard_NoSuchObject: BRep_Tool:: no parameter on edge`. ```python import...
``` from cadquery.occ_impl.shapes import * base = face(rect(50, 50)) - face(rect(40, 40)) base = base.fillet2D(5, base.vertices('X')) # B from cadquery import version print(version('cadquery')) base # display in jypyter ``` if...
``` import cadquery as cq cq.Workplane().sketch().push([(48.5800789794081,-3.3737790291878085)]).rect(3.0,87.6847679284009).rect(3.0,88.65465934289723).polygon([(0,0),(1,1),(2,2)],mode="s").finalize().extrude(1) ``` cadquery==2.4.0 is installed throw pip
[segfault_testfiles.zip](https://github.com/user-attachments/files/16914581/segfault_testfiles.zip) I am using cadquery to make some support scripts to assist with making drawer organizers (for storing tools). I have functions to add keyed features after the organizers are...
In the current master, there is no sufficient document for Sketch's arc function, especially for the overload function of ``` @arc.register def arc( self: T, c: Point, r: Real, a:...
https://github.com/CadQuery/cadquery/blob/3cd327a2dbaf3bae6791463a3dcb0ad7a714b607/cadquery/cq.py#L2930-L2988 If the cone generated by the angle and diameter is taller than the depth of the hole, it still cuts through and forms a conical cutout where I think...
function to find the first solid between start and end space points, with an optimized divide and conquer approach
I have a python file that emits a .STEP file. I am trying to make this into an .exe file. It is been quite a headache in doing so. What...