Subtract selection from the underlying faces.
(self: T)
| 1203 | return self |
| 1204 | |
| 1205 | def subtract(self: T) -> T: |
| 1206 | """ |
| 1207 | Subtract selection from the underlying faces. |
| 1208 | """ |
| 1209 | |
| 1210 | if self._selection: |
| 1211 | self._faces = tcast(Compound, self._faces - self._selected_faces()) |
| 1212 | |
| 1213 | return self |
| 1214 | |
| 1215 | def replace(self: T) -> T: |
| 1216 | """ |