Replace the underlying faces with the selection.
(self: T)
| 1213 | return self |
| 1214 | |
| 1215 | def replace(self: T) -> T: |
| 1216 | """ |
| 1217 | Replace the underlying faces with the selection. |
| 1218 | """ |
| 1219 | |
| 1220 | self._faces = tcast(Compound, self._selected_faces()) |
| 1221 | |
| 1222 | return self |
| 1223 | |
| 1224 | def __add__(self: T, other: "Sketch") -> T: |
| 1225 | """ |