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

FIS.JoinAdjacentPaths Method

Joins those paths of an array which endpoints lie near enough.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void JoinAdjacentPaths
(
	IList<FilNet.Path> inPaths,
	float inMaxJoiningDistance,
	float inMaxJoiningAngle,
	float inJoiningDistanceBalance,
	float inMinPathLength,
	IList<FilNet.Path> outPaths
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.IList<FilNet.Path>
inMaxJoiningDistancefloat<0.0f, INF>10.0fMaximal distance between edges that can be joined. Default value: 10.0f.
inMaxJoiningAnglefloat<0.0f, 180.0f>30.0fMaximal allowed angle between edges being joined. Default value: 30.0f.
inJoiningDistanceBalancefloat<0.0f, 1.0f>1.0fDetermines how important distance between paths is according to their angle difference. Default value: 1.0f.
inMinPathLengthfloat<0.0f, INF>0.0fMinimal length of a path. Default value: 0.0f.
outPathsSystem.Collections.Generic.IList<FilNet.Path>

Function Overrides

See also