You are here: Start » AVL.NET » Function Reference » Region » Region Relations » AVL.MakeRegionConditional

AVL.MakeRegionConditional

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void MakeRegionConditional
(
	AvlNet.Region inRegion,
	AvlNet.RegionFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	INullable<AvlNet.Region> outConditionalRegion
)

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region.
inFeatureAvlNet.RegionFeatureRegion 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.
outConditionalRegionAvlNet.INullable<AvlNet.Region>The region if the condition is met or nothing otherwise. This parameter cannot be null.

See also