CadQuery / CadQuery/cadquery

Sketch hull failure due to overlapping geometries

Open
#1,888 0 comments 0 reactions 0 assignees View on GitHub
bug
Dominant language
Python
Stars
5.8k
Forks
541
Avg merge
3d 2h
Merged PRs (30d)
5

Description

## To Reproduce

```
import cadquery as cq
from cadquery.vis import show

sketch = (cq.Sketch()
.push([(44,0)])
.rect(40, 40)
.reset()
.push([(82, 0)])
.circle(20)
.reset()
.hull())

show(sketch)
```
Running the above code will result in the following error:

Image

## How to fix

Applying #1889 pull request will fix the sketch hull failure.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.