Back to FabImage Library website

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

ConcatenatePaths_OfArray


Header: FIL.h
Namespace: fil
Module: FoundationLite

Joins open paths of an array.

Syntax

C++
C#
 
void fil::ConcatenatePaths_OfArray
(
	const ftl::Array<fil::Path>& inPathArray,
	bool inClose,
	fil::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