Back to Aurora Vision Library website

You are here: Start » Function Reference » Path » Path Combinators » ConcatenatePaths_OfArray

ConcatenatePaths_OfArray


Header: AVL.h
Namespace: avl
Module: FoundationLite

Joins open paths of an array.

Syntax

C++
C#
 
void avl::ConcatenatePaths_OfArray
(
	const atl::Array<avl::Path>& inPathArray,
	bool inClose,
	avl::Path& outPath
)

Parameters

Name Type Default Description
Input value inPathArray const Array<Path>& Input paths
Input value inClose bool If set to true adding in result a segment between its first point and the last one, therefore producing a closed path
Output value outPath Path& Output path

Description

Array version of ConcatenatePaths.

Errors

List of possible exceptions:

Error type Description
DomainError Closed path on input in ConcatenatePaths_OfArray.

See Also