CadQuery / CadQuery/cadquery

Union of two tori does not work.

Open
#949 2 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.