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

Invoke.PathToPathDistanceProfile

Computes the profile of distances between two paths.

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inPath1Fil.PathFirst input path.
inPath2Fil.PathSecond input path.
inPathDistanceModeFil.PathDistanceModeDistance measuring method.
inResolutionfloat<0.0f, INF>1.0fDefault value: 1.0f.
outDistanceProfileFil.ProfileProfile of distances between second path and consecutive points of first path.
outDistancesFtl.Optional<System.Collections.Generic.List<float>>Distances between second path and consecutive points of first path.
outConnectingSegmentsFtl.Optional<System.Collections.Generic.List<Fil.Segment2D>>Segments connecting second path and consecutive points of first path having minimal length.

See also