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

AVS.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,
	AvlNet.Range? inRange,
	float? inMinValue,
	float? inMaxValue,
	float inMinSectionWidth,
	float? inMaxSectionWidth,
	float inMinGapWidth,
	float? inMaxGapWidth,
	float? inMaxInnerGapWidth,
	IList<AvlNet.ProfileSection> outSections,
	out AvlNet.ProfileSection? outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileAvlNet.ProfileInput profile.
inRangeAvlNet.Range?
inMinValuefloat?5.0fLower bound for profile values. Default value: 5.0f.
inMaxValuefloat?Upper bound for profile values. Default value: atl::NIL.
inMinSectionWidthfloat<0.0f, INF>0.0fMinimal width of the found section. Default value: 0.0f.
inMaxSectionWidthfloat?<0.0f, INF>Maximal width of the found section. Default value: atl::NIL.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive sections. Default value: 0.0f.
inMaxGapWidthfloat?<0.0f, INF>Maximal distance between consecutive sections. Default value: atl::NIL.
inMaxInnerGapWidthfloat?<0.0f, INF>0.0fMaximal possible gap width between two sections to join them into one. Default value: 0.0f.
outSectionsSystem.Collections.Generic.IList<AvlNet.ProfileSection>Output profile sections.
outBoundingSectionAvlNet.ProfileSection?The smallest section that contains all outSections.

Function Overrides

See also