Bug with fillet causing solid to disappear
Open
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)
```

Note that **increasing** the fillet value to 5 seems to work OK:

Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.