RotateArc
Rotates an arc clockwise around center point.
Syntax
C++
Python
def RotateArc( inArc: Arc2D, inAngle: float, /, *, inCenter: Point2D | None = None, inInverse: bool = False ) -> outArc: Arc2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inArc | Arc2D | ||
![]() |
inCenter | Point2D | None | None | Center of rotation (the arc's center by default) |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outArc | Arc2D |


