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 inMaxDistance, float inMaxAngle, float inExcessTrim, FilNet.PathJoiningMethod inJoiningMethod, FilNet.PathJoiningAngleMeasure inAngleMeasure, bool inIgnorePathEndsOrder, bool inAllowCycles, float inMinPathLength, IList<FilNet.Path> outPaths )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPaths | System.Collections.Generic.IList<FilNet.Path> | |||
![]() | inMaxDistance | float | <0.0f, INF> | 10.0f | Maximal distance between paths that can be joined. Default value: 10.0f. |
![]() | inMaxAngle | float | <0.0f, 180.0f> | 30.0f | Maximal allowed angle between paths being joined. Default value: 30.0f. |
![]() | inExcessTrim | float | <0.0f, INF> | Length of the part of each path to be removed from its both sides. | |
![]() | inJoiningMethod | FilNet.PathJoiningMethod | AddBridge | Determines a method to join two paths in one. Default value: AddBridge. | |
![]() | inAngleMeasure | FilNet.PathJoiningAngleMeasure | InputPathOrientation | Determines a method to measure the angle between two input paths. Default value: InputPathOrientation. | |
![]() | inIgnorePathEndsOrder | bool | True | If set to false, only the end of a path can be joined with the begin of another path. Default value: True. | |
![]() | inAllowCycles | bool | True | Determines if cycles can be created during joining process. Default value: True. | |
![]() | inMinPathLength | float | <0.0f, INF> | 0.0f | Minimal length of a path. Default value: 0.0f. |
![]() | outPaths | System.Collections.Generic.IList<FilNet.Path> |
Function Overrides
- JoinAdjacentPaths(IList<Path>, Single, Single, Nullable<Single>, Single, Nullable<Single>, PathJoiningMethod, PathJoiningAngleMeasure, Boolean, Boolean, Single, IList<Path>)
- JoinAdjacentPaths(IList<Path>, Single, Single, Nullable<Single>, Single, Nullable<Single>, PathJoiningMethod, PathJoiningAngleMeasure, Boolean, Boolean, Single, IList<Path>, NullableRef<SafeList<Path>>)