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
Input value inPoints list[Point2D]
Input value inDelta Vector2D Translation vector
Input value inInverse bool False Switches to the inverse operation
Output value outPoints list[Point2D]