You are here: Start » FIL.NET » FIS.PathToPathDistanceProfile Method

FIS.PathToPathDistanceProfile Method

Computes the profile of distances between two paths.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inPath1FilNet.PathFirst input path.
inPath2FilNet.PathSecond input path.
inPathDistanceModeFilNet.PathDistanceModeDistance measuring method.
inResolutionfloat<0.0f, INF>1.0fDefault value: 1.0f.
outDistanceProfileFilNet.ProfileProfile of distances between second path and consecutive points of first path.
outDistancesFilNet.NullableRef<System.Collections.Generic.List<float>>Distances between second path and consecutive points of first path. Can be null to skip this parameter calculation.
outConnectingSegmentsFilNet.NullableRef<System.Collections.Generic.List<FilNet.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