CadQuery / CadQuery/cadquery

Broken model with twistExtrude and fillet

Open
#1,032 1 comment 0 reactions 0 assignees View on GitHub
question
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)
```
![screen](https://user-images.githubusercontent.com/19912970/159048162-d6c3adda-7172-4f0b-a818-b0bd07dccbbc.png)

Without `fillet` everything seems fine:

```
s1 = cq.Sketch().rect(10, 10).rect(9, 9, mode="s")
cq.Workplane("XY").placeSketch(s1).twistExtrude(60, 360)
```

![screen_2](https://user-images.githubusercontent.com/19912970/159048683-0eb0d3ce-2ede-4079-a293-9fec3ca26270.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.