RotatePathArray


Rotates an array of paths clockwise around a center point.

Syntax

C++
Python
 
def RotatePathArray(
	inPaths: list[Path],
	inAngle: float,
	/,
	*,
	inCenter: Point2D | None = None,
	inInverse: bool = False
)
-> outPaths: list[Path]

Parameters

Name Type Default Description
Input value inPaths list[Path]
Input value inCenter Point2D | None None Center of rotation (the mass center by default)
Input value inAngle float Clockwise rotation angle
Input value inInverse bool False Switches to the inverse operation
Output value outPaths list[Path]