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

AVL.ProfileSections

Finds subprofiles whose values fall into the specified range.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ProfileSections
(
	AvlNet.Profile inProfile,
	float inMinSectionWidth,
	float inMinGapWidth,
	out AvlNet.ProfileSection[] outSections,
	out AvlNet.ProfileSection? outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileAvlNet.ProfileInput profile.
inMinSectionWidthfloat<0.0f, INF>0.0fMinimal width of the found section. Default value: 0.0f.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive sections. Default value: 0.0f.
outSectionsAvlNet.ProfileSection[]Output profile sections.
outBoundingSectionAvlNet.ProfileSection?The smallest section that contains all outSections.

See also