CadQuery / CadQuery/cadquery

Bug with fillet causing solid to disappear

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

Description

The following code causes the solid body to disappear and it leaves some surfaces only:
```python
import cadquery as cq

result = (
cq.Workplane('YZ')
.cylinder(75, 40)
.faces('>X')
.workplane()
.transformed(rotate=(-45,0,0))
.split(keepBottom=True)
)

result = result.edges('|Y').fillet(4)
```
![image](https://user-images.githubusercontent.com/4743344/155211956-479548d8-088e-4064-acd7-1b0ee36b9563.png)

Note that **increasing** the fillet value to 5 seems to work OK:
![image](https://user-images.githubusercontent.com/4743344/155212179-3f2664e1-1374-4d22-a16d-13a414383ac5.png)

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.