Scales this shape through a transformation.
(self, factor: float)
| 1162 | return self._apply_transform(T) |
| 1163 | |
| 1164 | def scale(self, factor: float) -> Shape: |
| 1165 | """ |
| 1166 | Scales this shape through a transformation. |
| 1167 | """ |
| 1168 | |
| 1169 | T = gp_Trsf() |
| 1170 | T.SetScale(gp_Pnt(), factor) |
| 1171 | |
| 1172 | return self._apply_transform(T) |
| 1173 | |
| 1174 | def copy(self: T, mesh: bool = False) -> T: |
| 1175 | """ |