Union of two tori does not work.
Open
bug
OCC kernel issue
ShapeUpgrade_UnifySameDomain
- Dominant language
- Python
- Stars
- 5.8k
- Forks
- 541
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 5
Description
Union of two tori does not work.
## To Reproduce
```python
import cadquery as cq
result1 = (
cq
.Workplane()
.moveTo(24,0)
.circle(8)
.revolve()
)
result2 = (
cq
.Workplane()
.moveTo(24,16)
.circle(8)
.revolve()
)
result = result1.union(result2)
show_object(result)
```
Results in: `Standard_NullObject: BRep_Tool: TopoDS_Vertex hasn't gp_Png`.
Moved from: https://github.com/CadQuery/CQ-editor/issues/305
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.