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


