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

AVS.PathToPathDistanceProfile Method

Computes the profile of distances between two paths.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void PathToPathDistanceProfile
(
	AvlNet.Path inPath1,
	AvlNet.Path inPath2,
	AvlNet.PathDistanceMode inPathDistanceMode,
	float inResolution,
	AvlNet.Profile outDistanceProfile,
	NullableRef<List<float>> outDistances,
	NullableRef<List<AvlNet.Segment2D>> outConnectingSegments
)

Parameters

Name Type Range Default Description
inPath1AvlNet.PathFirst input path.
inPath2AvlNet.PathSecond input path.
inPathDistanceModeAvlNet.PathDistanceModeDistance measuring method.
inResolutionfloat<0.0f, INF>1.0fDefault value: 1.0f.
outDistanceProfileAvlNet.ProfileProfile of distances between second path and consecutive points of first path.
outDistancesAvlNet.NullableRef<System.Collections.Generic.List<float>>Distances between second path and consecutive points of first path. Can be null to skip this parameter calculation.
outConnectingSegmentsAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Segment2D>>Segments connecting second path and consecutive points of first path having minimal length. Can be null to skip this parameter calculation.

Function Overrides

See also