Back to Adaptive Vision Library website

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

TranslatePathArray


Header:AVL.h
Namespace:avl

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
inPaths const Array<Path>&
inDelta const Vector2D& Translation vector
inInverse bool Switches to the inverse operation
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.