RotatePathArray
Rotates an array of paths clockwise around a center point.
Syntax
C++
Python
def RotatePathArray( inPaths: list[Path], inAngle: float, /, *, inCenter: Point2D | None = None, inInverse: bool = False ) -> outPaths: list[Path]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPaths | list[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 |
![]() |
outPaths | list[Path] |


