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

Invoke.PathToLineDistance

Computes the smallest distance between a path and a line.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathToLineDistance
(
	Avl.Path inPath,
	Avl.Line2D inLine,
	float inResolution,
	out float outDistance,
	Optional<Avl.Segment2D> outConnectingSegment
)

Parameters

Name Type Range Default Description
inPathAvl.PathInput path.
inLineAvl.Line2DInput line.
inResolutionfloat<0.0f, INF>1.0fNumber of real-world units per one pixel. Default value: 1.0f.
outDistancefloatMinimal distance between input path and input line.
outConnectingSegmentAtl.Optional<Avl.Segment2D>Segment connecting input path and input line having minimal length.

See also