You are here: Start » AVL.NET » Function Reference » Path » Path Classification » AVL.MakePathConditional

AVL.MakePathConditional

Computes a path feature, checks whether its value is in range and creates a conditional path on this basis.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void MakePathConditional
(
	AvlNet.Path inPath,
	AvlNet.PathFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	INullable<AvlNet.Path> outConditionalPath
)

Parameters

Name Type Range Default Description
inPathAvlNet.PathInput path.
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.
outConditionalPathAvlNet.INullable<AvlNet.Path>The path if the condition is met or nothing otherwise. This parameter cannot be null.

See also