Fuse self and other.
(self, other: Shape)
| 1799 | return Compound.makeCompound(rv) |
| 1800 | |
| 1801 | def __add__(self, other: Shape) -> Shape: |
| 1802 | """ |
| 1803 | Fuse self and other. |
| 1804 | """ |
| 1805 | |
| 1806 | return fuse(self, other) |
| 1807 | |
| 1808 | def __sub__(self, other: Shape) -> Shape: |
| 1809 | """ |