RescaleArc
Changes radius of an arc and translates its center in relation to a reference point.
Syntax
C++
Python
def RescaleArc( inArc: Arc2D, /, *, inReferencePoint: Point2D | None = None, inScale: float = 1.0, inInverse: bool = False ) -> outArc: Arc2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inArc | Arc2D | ||
![]() |
inReferencePoint | Point2D | None | None | The point to which the distance of the arc center is changed (no change by default) |
![]() |
inScale | float | 1.0 | Scaling factor |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outArc | Arc2D |


