RotatePath
Rotates a path clockwise around a center point.
Syntax
C++
Python
def RotatePath( inPath: Path, inAngle: float, outPath: Path, /, *, inCenter: Point2D | None = None, inInverse: bool = False ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPath | Path | Input path | |
![]() |
inCenter | Point2D | None | None | Center of rotation (the mass center by default) |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPath | Path | Output path |


