TranslatePointArray
Translates an array of points by a vector.
Syntax
C++
Python
def TranslatePointArray( inPoints: list[Point2D], inDelta: Vector2D, /, *, inInverse: bool = False ) -> outPoints: list[Point2D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | ||
![]() |
inDelta | Vector2D | Translation vector | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPoints | list[Point2D] |


