You are here: Start » AVL.NET » Invoke.SegmentArrayIntersections
Computes a common points or segment of any segments from the set.
| Namespace: | Avl |
|---|---|
| Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void SegmentArrayIntersections ( List<Avl.Segment2D> inSegments, List<Avl.Point2D> outIntersectionPoints, List<int> outFirstIntersectionIndices, List<int> outSecondIntersectionIndices, List<Avl.Segment2D> outOverlapSegments, List<int> outFirstOverlapIndices, List<int> outSecondOverlapIndices )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() | inSegments | System.Collections.Generic.List<Avl.Segment2D> | Input segments. | ||
![]() | outIntersectionPoints | System.Collections.Generic.List<Avl.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<Avl.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. |


