You are here: Start » AVL.NET » AVL.ProfileSections Method

AVL.ProfileSections Method

Finds subprofiles whose values fall into the specified range.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void ProfileSections(
	AvlNet.Profile inProfile,
	float? inMinValue,
	float? inMaxValue,
	out AvlNet.ProfileSection[] outSections,
	out AvlNet.ProfileSection? outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileAvlNet.ProfileInput profile.
inMinValuefloat?5.0fLower bound for profile values. Default value: 5.0f, or null.
inMaxValuefloat?Upper bound for profile values. Default value: atl::NIL, or null.
outSectionsAvlNet.ProfileSectionAll sections that fulfill the min/max condition.
outBoundingSectionAvlNet.ProfileSection?The smallest section that contains all outSections.

See also