Broken model with twistExtrude and fillet
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
Hey, I'm trying to make a simple pipe with twistExtrude, but the object I get is closed. Am I doing something wrong or is there a bug somewhere?
```
s1 = cq.Sketch().rect(10, 10).rect(9, 9, mode="s").vertices().fillet(1)
cq.Workplane("XY").placeSketch(s1).twistExtrude(60, 360)
```

Without `fillet` everything seems fine:
```
s1 = cq.Sketch().rect(10, 10).rect(9, 9, mode="s")
cq.Workplane("XY").placeSketch(s1).twistExtrude(60, 360)
```

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