AlignPointArray
Moves an array of points from a local coordinate system to the absolute one.
Applications:Required when there are points 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 AlignPointArray( inPoints: list[Point2D], inAlignment: CoordinateSystem2D, /, *, inInverse: bool = False ) -> outAlignedPoints: list[Point2D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | ||
![]() |
inAlignment | CoordinateSystem2D | Coordinate system to align to | |
![]() |
inInverse | bool | False | Switches to the inverse transform |
![]() |
outAlignedPoints | list[Point2D] |


