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


