Create a partial copy of the sketch.
(self: T)
| 1078 | # misc |
| 1079 | |
| 1080 | def copy(self: T) -> T: |
| 1081 | """ |
| 1082 | Create a partial copy of the sketch. |
| 1083 | """ |
| 1084 | |
| 1085 | rv = self.__class__() |
| 1086 | rv._faces = self._faces.copy() |
| 1087 | |
| 1088 | return rv |
| 1089 | |
| 1090 | @overload |
| 1091 | def moved(self: T, loc: Location) -> T: |
no outgoing calls