RotateCoordinateSystem
Rotates a coordinate system around a center point.
Syntax
C++
Python
def RotateCoordinateSystem( inCoordinateSystem: CoordinateSystem2D, inAngle: float, /, *, inCenter: Point2D | None = None, inInverse: bool = False ) -> outCoordinateSystem: CoordinateSystem2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inCoordinateSystem | CoordinateSystem2D | ||
![]() |
inCenter | Point2D | None | None | Center of rotation (the coordinate system's center by default) |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outCoordinateSystem | CoordinateSystem2D |


