You are here: Start » FIL.NET » FIS.PathPathIntersections Method
FIS.PathPathIntersections Method
Computes the common points of two paths.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void PathPathIntersections ( FilNet.Path inPath1, FilNet.Path inPath2, IList<FilNet.Point2D> outIntersectionPoints, NullableRef<List<int>> outSegmentIndices1, NullableRef<List<int>> outSegmentIndices2 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPath1 | FilNet.Path | Input path. | ||
![]() | inPath2 | FilNet.Path | Input path. | ||
![]() | outIntersectionPoints | System.Collections.Generic.IList<FilNet.Point2D> | Intersections between the input paths. | ||
![]() | outSegmentIndices1 | FilNet.NullableRef<System.Collections.Generic.List<int>> | Indices of the segments of the first path which generate found intersection points. Can be null to skip this parameter calculation. | ||
![]() | outSegmentIndices2 | FilNet.NullableRef<System.Collections.Generic.List<int>> | Indices of the segments of the second path which generate found intersection points. Can be null to skip this parameter calculation. |