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

I am trying to achieve something like what is described in https://stackoverflow.com/questions/61186339/how-to-iteratively-loft-wires-in-cadquery :+1: ```python import cadquery as cq wp = cq.Workplane("XY").rect(1,2).workplane() result = None for i in range(0,5): wp2 =...

OCC kernel issue
ShapeUpgrade_UnifySameDomain

By popular request - CQ with OCCT 7.6

I try to export a simple gltf file of an assembly: ```py box = cq.Workplane().box(1, 2, 3) asm = cq.Assembly().add(box) cq.Assembly().add(box).save('box.gltf') ``` The script outputs: RWGltf_CafWriter skipped node 'c44caed6-33fd-11ed-94b0-bf8faf8ebb27_part' without...

I like the simplicity of [`Assembly.save()`](https://cadquery.readthedocs.io/en/latest/classreference.html#cadquery.Assembly.save): ```py asm = ( cq.Assembly() .add(box) .save('box.step') ) ``` To export a model, in the other hand, the syntax is not as nice: ```py...

[CadQuery Server](https://github.com/roipoussiere/cadquery-server) is a web server used to render 3d models from CadQuery code loaded dynamically. Example usage with Kate on the left and Firefox on the right: ![screenshot](https://user-images.githubusercontent.com/1665542/188649145-6f6a8bd2-1b89-45f4-9a28-b048926818a8.png) Features:...

announcement

Sketch.located does not seem to have any effect whenever and wherever it is called. Perhaps an example of what it is supposed to do would help. I see that it...

question

I'm new to CadQuery, trying to transition from FreeCAD to carry out some modelling automation/operations. I've managed to load a STEP file, and export it as an STL: ```py result...

question

See https://github.com/CadQuery/cadquery/blob/d4cdeeb30d4549848d5dcd1561386a44af77e3f2/cadquery/sketch.py#L484 fuse is called without specifying glue (default is False). Here is a case where providing an option to fuse with glue and given tolerance might be useful. ```python...

sketching

There is at least this code line ``` from jupyter_cadquery.viewer.client import show_object ``` missing in some examples, like ./examples/Ex022_Revolution.py