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

Invoke.PathToPathDistanceProfile

Computes the profile of distances between two paths.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathToPathDistanceProfile
(
	Avl.Path inPath1,
	Avl.Path inPath2,
	Avl.PathDistanceMode inPathDistanceMode,
	float inResolution,
	Avl.Profile outDistanceProfile,
	Optional<List<float>> outDistances,
	Optional<List<Avl.Segment2D>> outConnectingSegments
)

Parameters

Name Type Range Default Description
inPath1Avl.PathFirst input path.
inPath2Avl.PathSecond input path.
inPathDistanceModeAvl.PathDistanceModeDistance measuring method.
inResolutionfloat<0.0f, INF>1.0fDefault value: 1.0f.
outDistanceProfileAvl.ProfileProfile of distances between second path and consecutive points of first path.
outDistancesAtl.Optional<System.Collections.Generic.List<float>>Distances between second path and consecutive points of first path.
outConnectingSegmentsAtl.Optional<System.Collections.Generic.List<Avl.Segment2D>>Segments connecting second path and consecutive points of first path having minimal length.

See also