AlignPathArray


Moves an array of paths from a local coordinate system to the absolute one.

Applications:Required when there are paths defined in a local coordinate system, but the next image-related filter in the program does not have any inAlignment input.

Syntax

C++
Python
 
def AlignPathArray(
	inPaths: list[Path],
	inAlignment: CoordinateSystem2D,
	/,
	*,
	inInverse: bool = False
)
-> outAlignedPaths: list[Path]

Parameters

Name Type Default Description
Input value inPaths list[Path]
Input value inAlignment CoordinateSystem2D Coordinate system to align to
Input value inInverse bool False Switches to the inverse transform
Output value outAlignedPaths list[Path]