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

Invoke.ProfileSections

Finds subprofiles whose values fall into the specified range.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ProfileSections
(
	Avl.Profile inProfile,
	Optional<Avl.Range> inRange,
	Optional<float> inMinValue,
	Optional<float> inMaxValue,
	float inMinSectionWidth,
	Optional<float> inMaxSectionWidth,
	float inMinGapWidth,
	Optional<float> inMaxGapWidth,
	Optional<float> inMaxInnerGapWidth,
	List<Avl.ProfileSection> outSections,
	Conditional<Avl.ProfileSection> outBoundingSection
)

Parameters

Name Type Range Default Description
inProfileAvl.ProfileInput profile.
inRangeAtl.Optional<Avl.Range>
inMinValueAtl.Optional<float>5.0fLower bound for profile values. Default value: 5.0f.
inMaxValueAtl.Optional<float>Upper bound for profile values. Default value: atl::NIL.
inMinSectionWidthfloat<0.0f, INF>0.0fMinimal width of the found section. Default value: 0.0f.
inMaxSectionWidthAtl.Optional<float><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.
inMaxGapWidthAtl.Optional<float><0.0f, INF>Maximal distance between consecutive sections. Default value: atl::NIL.
inMaxInnerGapWidthAtl.Optional<float><0.0f, INF>0.0fMaximal possible gap width between two sections to join them into one. Default value: 0.0f.
outSectionsSystem.Collections.Generic.List<Avl.ProfileSection>Output profile sections.
outBoundingSectionAtl.Conditional<Avl.ProfileSection>The smallest section that contains all outSections.

See also