CadQuery / CadQuery/cadquery

Lofting Error

Open
#1,076 1 comment 0 reactions 0 assignees View on GitHub
bug
Dominant language
Python
Stars
5.8k
Forks
541
Avg merge
3d 2h
Merged PRs (30d)
5

Description

I got an error when lofting.
But if I set ANG=0, it works fine.

## To Reproduce

```python
from cadquery import Workplane, Sketch, Vector, Location

ANG=45
TL=25
TW=19
TH=13
BH=13
BS=29

sB = Sketch().rect(BS,BS,angle=ANG).vertices().fillet(3)
sT = Sketch().rect(TL,TW).vertices().fillet(7).moved(Location(Vector(0, 0, BH)))
result = (
Workplane()
.placeSketch(sB,sT)
.loft()
.faces('|Z')
.shell(1.6)
)
```

## Backtrace

```
Standard_NoSuchObject:BRep_Tool::no paramter on edge
```

## Environment
Latest cq-editor
OS: Windows

Was CadQuery installed using Conda?:
Output of `conda list` from your active Conda environment:
```
```

Using:

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.