You are here: Start » AVL.NET » AVL.GroupPathsByRegions

AVL.GroupPathsByRegions

For each region returns which paths lie inside of it or intersect with it.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GroupPathsByRegions
(
	AvlNet.Path[] inPaths,
	AvlNet.Region[] inRegions,
	AvlNet.MatchingCriterion inMatchingCriterion,
	out int[][] outGroupedIndices
)

Parameters

Name Type Range Default Description
inPathsAvlNet.Path[]Array of paths that will be classified into multiple groups.
inRegionsAvlNet.Region[]Array of regions that define the groups.
inMatchingCriterionAvlNet.MatchingCriterionSpecifies whether a path must fully belong to a group region or if it is enough that it intersects.
outGroupedIndicesint[][]Indices of input paths classified into multiple groups.

See also