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


