-
The following code runs fine against master, but not against the OCP branch.
```python
from cadquery import Vector, Matrix
m = Matrix(
[[-0.146655, -0.271161, -0.951296, 0.0376659],
…
-
Hi,
the [`project`](https://build123d.readthedocs.io/en/latest/operations.html#operations_generic.project) function silently generates an unusable `Compound` when trying to `project(some_solid)`.. …
-
After upgrading Ubuntu to 22.04 LTS, creating a new conda environment, and installing cadquery with `conda install -c conda-forge -c cadquery cadquery=master` and cq-editor with `conda install -c cadq…
gumyr updated
2 years ago
-
Very nice and interesting library. I am a newbie, and I like to learn this library.
As a challenge, I like to model (complex) polyhedrons. Therefore I want firstly visualize the vertices (3d points…
-
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.githubuserc…
gumyr updated
6 months ago
-
Can sketches be exported to SVGs? I'm running this program:
```
import cadquery as cq
result = cq.Workplane("front").sketch().circle(1).parent
result.exportSvg('test.svg')
```
This is th…
-
## 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 selected`-e…
-
Hello,
I have noticed that if I have in a file 'file1.py' a function like this this :
```
import cadquery as cq
def make_cylinder(radius):
cyl = cq.Workplane().circle(5).extrude(10)
try…
-
It looks like [this example](https://github.com/CadQuery/cadquery-contrib/blob/master/examples/3D_Printer_Extruder_Support.py) was broken in the transition to PythonOCC. It fails in both CQ-editor and…
-
I am just starting to have a play with assemblies and cq-annotate.
One thing I am delighted about is that I can assemble assemblies. This way we can have a complex nested object.
I made this cod…