Subtract other from self.
(self, other: Shape)
| 1806 | return fuse(self, other) |
| 1807 | |
| 1808 | def __sub__(self, other: Shape) -> Shape: |
| 1809 | """ |
| 1810 | Subtract other from self. |
| 1811 | """ |
| 1812 | |
| 1813 | return cut(self, other) |
| 1814 | |
| 1815 | def __mul__(self, other: Shape) -> Shape: |
| 1816 | """ |