RotateArc


Rotates an arc clockwise around center point.

Syntax

C++
Python
 
def RotateArc(
	inArc: Arc2D,
	inAngle: float,
	/,
	*,
	inCenter: Point2D | None = None,
	inInverse: bool = False
)
-> outArc: Arc2D

Parameters

Name Type Default Description
Input value inArc Arc2D
Input value inCenter Point2D | None None Center of rotation (the arc's center by default)
Input value inAngle float Clockwise rotation angle
Input value inInverse bool False Switches to the inverse operation
Output value outArc Arc2D