Back to Aurora Vision Library website

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

ConcatenatePaths_OfLoop


Header: AVL.h
Namespace: avl
Module: FoundationLite

Joins open paths appearing in consecutive iterations.

Syntax

C++
C#
 
void avl::ConcatenatePaths_OfLoop
(
	ConcatenatePaths_OfLoopState& ioState,
	const avl::Path& inPath,
	bool inClose,
	avl::Path& outPath
)

Parameters

Name Type Default Description
Input will be modified ioState ConcatenatePaths_OfLoopState& Object used to maintain state of the function.
Input value inPath const Path& Input path
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

Loop version of ConcatenatePaths.

Errors

List of possible exceptions:

Error type Description
DomainError Closed path on input in ConcatenatePaths_OfLoop.

See Also