Sketch hull failure due to overlapping geometries
Open
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:
## 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.