You are here: Start » AVL.NET » Function Reference » Path » Path Combinators » AVL.ConcatenatePaths

AVL.ConcatenatePaths

Joins up to four open paths.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ConcatenatePaths
(
	AvlNet.Path inPath1,
	AvlNet.Path inPath2,
	AvlNet.Path inPath3,
	AvlNet.Path inPath4,
	bool inClose,
	AvlNet.Path outPath
)

Parameters

Name Type Range Default Description
inPath1AvlNet.PathInput path.
inPath2AvlNet.PathInput path.
inPath3AvlNet.PathInput path.
inPath4AvlNet.PathInput path.
inCloseboolIf set to true adding in result a segment between its first point and the last one, therefore producing a closed path.
outPathAvlNet.PathOutput 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

List of possible exceptions:

Error type Description
DomainError Closed path on input in ConcatenatePaths.

See also