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

Invoke.PathToPathMaximumDistance

Computes the distance between the farthest point of the input path from the other path.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathToPathMaximumDistance
(
	Avl.Path inPath1,
	Avl.Path inPath2,
	Avl.PathDistanceMode inPathDistanceMode,
	float inResolution,
	out float outDistance,
	Optional<Avl.Segment2D> outConnectingSegment
)

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.
outDistancefloatDistance between farthest point of the input path the other input path.
outConnectingSegmentAtl.Optional<Avl.Segment2D>Segment connecting input paths having such distance.

See also