You are here: Start » AVL.NET » AVS.ClassifyPaths Method

AVS.ClassifyPaths Method

Splits the paths of the input array - in accordance to the relation between computed feature values and the specified range.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void ClassifyPaths
(
	IList<AvlNet.Path> inPaths,
	AvlNet.PathFilter inPathFilter,
	AvlNet.PathFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	NullableRef<SafeList<AvlNet.Path>> outAccepted,
	NullableRef<SafeList<AvlNet.Path>> outRejected,
	NullableRef<SafeList<AvlNet.Path>> outBelow,
	NullableRef<SafeList<AvlNet.Path>> outAbove,
	NullableRef<List<float>> outValues
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.IList<AvlNet.Path>Input paths.
inPathFilterAvlNet.PathFilterDetermines which paths will take part in computation.
inFeatureAvlNet.PathFeaturePath feature value to be computed.
inMinimumfloat?Lowest value of the range. Default value: atl::NIL.
inMaximumfloat?Highest value of the range. Default value: atl::NIL.
outAcceptedAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Path>>Paths with feature values matching the range. Can be null to skip this parameter calculation.
outRejectedAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Path>>Paths with feature values outside the range. Can be null to skip this parameter calculation.
outBelowAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Path>>Paths with feature values lower than inMinimum. Can be null to skip this parameter calculation.
outAboveAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Path>>Paths with feature values higher than inMaximum. Can be null to skip this parameter calculation.
outValuesAvlNet.NullableRef<System.Collections.Generic.List<float>>Computed feature values. Can be null to skip this parameter calculation.

See also