RotatePoint
Rotates a point clockwise around a center point.
Syntax
C++
Python
def RotatePoint( inPoint: Point2D, inCenter: Point2D, inAngle: float, /, *, inInverse: bool = False ) -> outPoint: Point2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint | Point2D | ||
![]() |
inCenter | Point2D | Center of rotation | |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPoint | Point2D |


