You are here: Start » FIL.NET » Invoke.SegmentArrayIntersections
Computes a common points or segment of any segments from the set.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SegmentArrayIntersections ( List<Fil.Segment2D> inSegments, List<Fil.Point2D> outIntersectionPoints, List<int> outFirstIntersectionIndices, List<int> outSecondIntersectionIndices, List<Fil.Segment2D> outOverlapSegments, List<int> outFirstOverlapIndices, List<int> outSecondOverlapIndices )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSegments | System.Collections.Generic.List<Fil.Segment2D> | Input segments. | ||
![]() | outIntersectionPoints | System.Collections.Generic.List<Fil.Point2D> | Intersection points. | ||
![]() | outFirstIntersectionIndices | System.Collections.Generic.List<int> | First indices of the input segments which corresponds to the intersection points. | ||
![]() | outSecondIntersectionIndices | System.Collections.Generic.List<int> | Second indices of the input segments which corresponds to the intersection points. | ||
![]() | outOverlapSegments | System.Collections.Generic.List<Fil.Segment2D> | Overlap segments. | ||
![]() | outFirstOverlapIndices | System.Collections.Generic.List<int> | First indices of the input segments which corresponds to the overlap segments. | ||
![]() | outSecondOverlapIndices | System.Collections.Generic.List<int> | Second indices of the input segments which corresponds to the overlap segments. |