Back to Adaptive Vision Library website

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

ConcatenatePaths


Joins two open paths.

Header:AVL.h

Syntax

C++
C#
 
void avl::ConcatenatePaths
(
	const avl::Path& inPath1,
	const avl::Path& inPath2,
	avl::Path& outPath
)

Parameters

Name Type Default Description
inPath1 const Path& Input path
inPath2 const Path& Input path
outPath Path& Output path

Description

The operations joins two open paths adding a segment connecting the end of the inPath1 to the begin of inPath2.

Examples

ConcatenatePaths run on the sample paths.

Errors

Error type Description
DomainError Closed path on input in ConcatenatePaths.