Back to Aurora Vision Library website

You are here: Start » Function Reference » Path » Path Spatial Transforms » TranslatePathArray

TranslatePathArray


Header: AVL.h
Namespace: avl
Module: FoundationLite

Translates an array of paths by a vector.

Syntax

C++
C#
 
void avl::TranslatePathArray
(
	const atl::Array<avl::Path>& inPaths,
	const avl::Vector2D& inDelta,
	bool inInverse,
	atl::Array<avl::Path>& outPaths
)

Parameters

Name Type Default Description
Input value inPaths const Array<Path>&
Input value inDelta const Vector2D& Translation vector
Input value inInverse bool Switches to the inverse operation
Output value outPaths Array<Path>&

In-place Processing

This function supports in-place data processing - you can pass the same reference to inPaths and outPaths

Read more about In-place Computation.