You are here: Start » FIL.NET » Invoke.PathPathIntersections
Computes the common points of two paths.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void PathPathIntersections ( Fil.Path inPath1, Fil.Path inPath2, List<Fil.Point2D> outIntersectionPoints, Optional<List<int>> outSegmentIndices1, Optional<List<int>> outSegmentIndices2 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPath1 | Fil.Path | Input path. | ||
![]() | inPath2 | Fil.Path | Input path. | ||
![]() | outIntersectionPoints | System.Collections.Generic.List<Fil.Point2D> | Intersections between the input paths. | ||
![]() | outSegmentIndices1 | Ftl.Optional<System.Collections.Generic.List<int>> | Indices of the segments of the first path which generate found intersection points. | ||
![]() | outSegmentIndices2 | Ftl.Optional<System.Collections.Generic.List<int>> | Indices of the segments of the second path which generate found intersection points. |